<!--
function validateLog()
{
  with (document.logform)
 { 
   
   document.logform.JavaScriptEnabled.value = "true";
   
   
  if (LName.value.length == 0)
	 {
         alert("Please enter an ID!");
		 LName.focus();
		 return false;
	 }

  if (LName.value.indexOf("'") > -1)
    {
	     alert("Please do not include an apostraphe in ID!");
		 LName.focus();
		 return false;
	     
    }

   if (LName.value.indexOf("\\") > -1)
    {
	     alert("Please do not include a backslash in ID!");
		 LName.focus();
		 return false;
	     
    }


 if (LName.value.indexOf("=") > -1)
    {
	 alert("Please do not include an equal sign in ID!");
     LName.focus();
	 return false;
    } 

 
  if (LPassword.value.length == 0)
     {
	     alert("Please enter a Password!");
		 LPassword.focus();
		 return false;
	 }

  if (LPassword.value.indexOf("'") > -1)
    {
	     alert("Please do not include an apostraphe in password!");
		 LPassword.focus();
		 return false;
	     
    }

	 if (LPassword.value.indexOf("\\") > -1)
    {
	     alert("Please do not include a backslash in password!");
		 LPassword.focus();
		 return false;
	     
    }
  
  
   if (LPassword.value.indexOf("=") > -1)
    {
	 alert("Please do not include an equal sign in password!");
     LPassword.focus();
	 return false;
    } 

     
   }    
} 
//-->