// JavaScript Document
function HideDIVInit() {
setTimeout("HideDiv()", 10000);
}
function HideDiv(){
document.getElementById("CV").style.display="none";
} 
 function callEmpLogin()
 {

 		var userEmail=document.getElementById('txtEmployeerName').value;
		
		var userPassword=document.getElementById('txtEmployeerPassword').value;
		
		
		if(userEmail!="" && userPassword!="")
		{
			
			
			var flag = isEmail(userEmail);
				if(flag != true)
				{
				alert("Invalid UserName... must be an Email Address.");
				document.txtUserName.focus();
				}
				else
				{
					window.location="log_emp.php?eemail="+userEmail+"&epass="+userPassword+"";
				}
		}
		else
		{
			alert('UserName or Password Field Empty');
		}

 }
