function ValidateForm(theForm){
// if (theForm.Form_Status.value == 'Agree'){
  if(theForm.txtShowID.value == '' || isNaN(theForm.txtShowID.value)){
   alert('Show ID required. (numeric)');
   theForm.txtShowID.focus(); 
   return false;
  }
  if(theForm.txtPassword.value == ''){
   alert('Password required.');
   theForm.txtPassword.focus(); 
   return false;
  }

 //}
 return true;
}
