function loginValid(form)
//Script to handle Client side Validation
{
  


  if (document.Login.UserName.value==""){
       alert("Please Enter the UserName field!");
       return false;
     } 
  if (document.Login.Password.value==""){
       alert("Please Enter the Password field!");
       return false;

            }
}