/*
* Validate the ad form on the DM and Gazette
*
*/

function validateForm() {

	var errorstring = "";

	var cName=document.forms["form1"]["cName"].value;
	var cEmail=document.forms["form1"]["cEmail"].value;
	
	var cPhone=document.forms["form1"]["cPhone"].value;
	var cTitle=document.forms["form1"]["cTitle"].value;
	var cCompany=document.forms["form1"]["cCompany"].value;
	var cMessage=document.forms["form1"]["cMessage"].value;
	var cAction=document.forms["form1"]["cAction"].value;

	if (cName==null || cName=="") {
		errorstring = "Name must be filled out\n";
	}

	var atpos=cEmail.indexOf("@");
	var dotpos=cEmail.lastIndexOf(".");
	if (atpos<1 || dotpos<atpos+2 || dotpos+2>=cEmail.length) {
		errorstring = errorstring + "Please enter a valid e-mail address\n";
	}

	if (cPhone==null || cPhone=="") {
		errorstring = errorstring + "Please enter phone number\n";
	}

	if (cTitle==null || cTitle=="") {
		errorstring = errorstring + "Please enter your Title\n";
	}

	if (cCompany==null || cCompany=="") {
		errorstring = errorstring + "Please enter your Company name\n";
	}	

	if (errorstring == "") {

		parent.TINY.box.show({
		url:'contact/feedback-form2.php?cName='+cName+'&cEmail='+cEmail+'&cPhone='+cPhone+'&cTitle='+cTitle+'&cCompany='+cCompany+'&cMessage='+cMessage+'&cAction='+cAction
		});
	
		return false;
	} else {
		alert(errorstring);
		return false;
	}		
}
