// JavaScript Document

function CheckFeedBack()
{
	if(frmFeedBack.Title.value=="")
	{
		alert("Title must input !");
		return;
	}
	
	if(frmFeedBack.YourName.value=="")
	{
		alert("Your name must input !");
		return;
	}	
	
	if(frmFeedBack.comName.value=="")
	{
		alert("Your company Name must input !");
		return;
	}
	if(frmFeedBack.Address.value=="")
	{
		alert("Your Address must input !");
		return;
	}
	
	if(frmFeedBack.City.value=="")
	{
		alert("City must input !");
		return;
	}
	
	if(frmFeedBack.state.value=="")
	{
		alert("state must input !");
		return;
	}
	
	if(frmFeedBack.zipCode.value=="")
	{
		alert("zipCode must input !");
		return;
	}
	
	if(frmFeedBack.Phone.value=="")
	{
		alert("Phone must input !");
		return;
	}
	
	if(frmFeedBack.Mail.value=="")
	{
		alert("Your mail must input !");
		return;
	}
	if(frmFeedBack.Details1.value=="")
	{
		alert("\"What type of business is your company\" must input !");
		return;
	}
	
	if(frmFeedBack.Details2.value=="")
	{
		alert("\"Comments/questions\" must input !");
		return;
	}
	frmFeedBack.submit();
}
