// JavaScript Document
function FromSub()
{
	if (document.getElementById("tName").value =="") 
	{
			//alert("No valid e-mail address!");
	 alert("Please enter your name");
	
	 return false;
	}
	if (document.getElementById("tCompany").value =="") 
	{
			//alert("No valid e-mail address!");
	 alert("Please enter company name");
	
	 return false;
	}
	if (document.getElementById("tPhone").value =="") 
	{
			//alert("No valid e-mail address!");
	 alert("Please enter phone number");
	
	 return false;
	}
	if (document.getElementById("tEmail").value.indexOf('@', 0) == -1 || document.getElementById("tEmail").value.indexOf('.', 0) == -1) 
	{
			//alert("No valid e-mail address!");
	 alert("Please enter valid email address");
	
	 return false;
	}
	
	if (document.getElementById("tAddress").value =="") 
	{
			//alert("No valid e-mail address!");
	 alert("Please enter address");
	
	 return false;
	}
	document.getElementById("form1").submit();
}