function cmdSubmit_OnClick()
{
	if(document.form1.txtName.value == "")
	{
		alert("Name can not be blank");
		document.form1.txtName.focus();
		return false;
	}

	if(document.form1.txtCompany.value == "")
	{
		alert("Company Name can not be blank");
		document.form1.txtCompany.focus();
		return false;
	}
	if(document.form1.email.value == "")
	{
		alert("Email can not be blank");
		document.form1.email.focus();
		return false;
	}
	else if (form1.email.value.indexOf("@")==-1 || form1.email.value.indexOf(".")==-1 )
	{ 
       alert("The specified Email Address seems to be invalid")
   	   form1.email.select()
	   return false
	}
    if(document.form1.txtReq.value == "")
	{
		alert("Requirements is required");
		document.form1.txtReq.focus();
		return false;
	}
	
}
