
function stdlogoncontext_areReqdFieldsSet( form )
{
   if ( form.elements[logon_ID_QUERY_PARAM].value.length == 0 )
   {
       window.alert("Please enter an ID");
       return false;
   }
   if ( form.elements[logon_PW_QUERY_PARAM].value.length == 0 )
   {
       window.alert("Please enter a password");
       return false;
   }
   return true;
}

