// JavaScript Document
function echeck(str) {

		var at="@"
		var dot="."
		var lat=str.indexOf(at)
		var lstr=str.length
		var ldot=str.indexOf(dot)
		if (str.indexOf(at)==-1){
		   //alert("Invalid E-mail ID")
		   document.getElementById('error').innerHTML="Invalid E-mail ID"; 
		   return false
		}

		if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
		   //alert("Invalid E-mail ID")
		   document.getElementById('error').innerHTML="Invalid E-mail ID"; 
		   return false
		}

		if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
		    //alert("Invalid E-mail ID")
			document.getElementById('error').innerHTML="Invalid E-mail ID"; 
		    return false
		}

		 if (str.indexOf(at,(lat+1))!=-1){
		    //alert("Invalid E-mail ID")
			document.getElementById('error').innerHTML="Invalid E-mail ID"; 
		    return false
		 }

		 if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
		    //alert("Invalid E-mail ID")
			document.getElementById('error').innerHTML="Invalid E-mail ID"; 
		    return false
		 }

		 if (str.indexOf(dot,(lat+2))==-1){
		    //alert("Invalid E-mail ID")
			document.getElementById('error').innerHTML="Invalid E-mail ID"; 
		    return false
		 }
		
		 if (str.indexOf(" ")!=-1){
		    //alert("Invalid E-mail ID")
			document.getElementById('error').innerHTML="Invalid E-mail ID"; 
		    return false
		 }

 		 return true					
	}

function ValidateForm(){   
	var nameOC=document.form1.name;
	var com=document.form1.com;
	var emailID=document.form1.Email;
	
	
	
	if ((nameOC.value=='')){
		//alert("Please Enter Your Name")
		document.getElementById('error').innerHTML="Please Enter Your Name"; 
		nameOC.focus()
		return false
	}
		if (com.value==''){
		//alert("Please Enter your Telephone Number")`
		document.getElementById('error').innerHTML="Please Enter Company Name"; 
		com.focus()
		return false
	}
	if (emailID.value==''){
		//alert("Please Enter your Email ID")
		document.getElementById('error').innerHTML="Please Enter your Email ID"; 
		emailID.focus()
		return false
	}
	if (echeck(emailID.value)==false){
		emailID.value=""
		emailID.focus()
		return false
	}
	

	return true
	
	
 }
function loginform()
{
	var uname=document.userform.txtUserName;
	var password=document.userform.txtPassword;

	if (uname.value==''){
		//alert("Please Enter Your Name")
		document.getElementById('error3').innerHTML="Please Enter Username"; 
		uname.focus()
		return false
	}
		if (password.value==''){
		//alert("Please Enter your Telephone Number")`
		document.getElementById('error3').innerHTML="Please Enter Password"; 
		password.focus()
		return false
	}
	return true;

}

