﻿// JScript File


//apply this to Form onsubmit to kill invalid postback arg error caused
//by user selecting .net control while page is loading
function StallEventValidation()
{    
    //onsubmit="javascript:return StallValidation();"
    return !(document.getElementById('__EVENTVALIDATION') == null);
}
