function validate()
{
if ((document.subscription.address.value=="") || (document.subscription.address.value.length > 0 && (document.subscription.address.value.indexOf("@",0) == - 1 || document.subscription.address.value.indexOf(".",0) == - 1))) { 
		alert ("Enter valid e-mail address");
		document.subscription.address.focus();
		return false;
	}

}


function CheckForm()
{ 
	//alert("hi");
	//Initialise variables
	var errorMsg = "";

	//Check for a name
	if (document.contactform.name.value == ""){
		alert ("Enter your Name");	
		document.contactform.name.focus();
		return false;
		}
	if (document.contactform.phone.value == ""){
		alert("Enter your Phone");
		document.contactform.Phone.focus();
		return false;
	}
	if ((document.contactform.Email.value=="") || (document.contactform.Email.value.length > 0 && (document.contactform.Email.value.indexOf("@",0) == - 1 || document.contactform.Email.value.indexOf(".",0) == - 1))) { 
		alert ("Enter your valid e-mail address");
		document.contactform.Email.focus();
		return false;
	}

	//alert (document.contactform.Services_of_interest.planning.checked);
	if (document.contactform.Services_of_interest.planning.checked == "0" && document.contactform.Services_of_interest.design.checked == "0" && document.contactform.Services_of_interest.internet.checked == "0" && document.contactform.Services_of_interest.seo.checked == "0" && document.contactform.Services_of_interest.ppc.checked == "0" && document.contactform.Services_of_interest.print.checked == "0" && document.contactform.Services_of_interest.crm.checked == "0" && document.contactform.Services_of_interest.sms.checked == "0" && document.contactform.Services_of_interest.email.checked == "0"){
		alert ("Select At least one of Services Intrested");
		document.contactform.Services_of_interest.planning.focus();
		return false;
	}

	//alert (document.contactform.How_heard_about.google.checked);
	if (document.contactform.How_heard_about.google.checked == "0" && document.contactform.How_heard_about.msn.checked == "0" && document.contactform.How_heard_about.jeeves.checked == "0" && document.contactform.How_heard_about.search.checked == "0"  && document.contactform.How_heard_about.other.checked == "0"){
		alert("Select How you have Heard about us");
		document.contactform.How_heard_about.google.focus();
		return false;
	}
	if (document.contactform.How_heard_about.other.checked == "1")
		{
		if (document.contactform.If_other.value == ""){
		alert("Enter your source if you selected other");
		document.contactform.If_other.focus();
		return false;
		}
	}
	else
	{document.contactform.If_other.value="";}
	//Check for an enquiry
}
