//<!--
function validate() 
{
	if (document.contactform.targetfirstname.value == "") { alert ("Please enter your First name"); document.contactform.targetfirstname.focus(); return false; }
	if (document.contactform.targetlastname.value == "") { alert ("Please enter your Last name"); document.contactform.targetlastname.focus(); return false; }
	if (document.contactform.targetcompany.value == "") { alert ("Please enter your Company name"); document.contactform.targetcompany.focus(); return false; }
	if (document.contactform.targetemail.value == "") { alert ("Please enter your E-mail address"); document.contactform.targetemail.focus(); return false; }
	
   if ((document.contactform.targetemail.value.indexOf ('@', 2) == -1) || (document.contactform.targetemail.value.indexOf ('.', 4) == -1)) {
	alert('Please enter a valid E-mail Address.');  
        document.contactform.targetemail.focus(); document.contactform.targetemail.select();
		return false; } 	  	
	
	//if (document.contactform.targetcountry.value == "") { alert ("Please enter your Country"); document.contactform.targetcountry.focus(); return false; }
	var countryindex = document.contactform.targetcountry.options.selectedIndex;
	var countryselected = document.contactform.targetcountry.options[countryindex].value;
	if (countryselected == "") { alert("Please select your Country.");  document.contactform.targetcountry.focus(); return false; }				
	
	if (((document.contactform.targetchkContentgeneration.checked) ||
		(document.contactform.targetchkEditorial.checked) ||
		(document.contactform.targetchkResearch.checked) ||
		(document.contactform.targetchkPrePress.checked) ||
		(document.contactform.targetchkCustomPublishing.checked) ||				
		
		(document.contactform.targetchkSrchEngine.checked) ||
		(document.contactform.targetchkMediaPlanning.checked) ||
		(document.contactform.targetchkIntegratedMktg.checked) ||				
		
		(document.contactform.targetchkWebbased.checked) ||
		(document.contactform.targetchkWebbased2.checked) == true ) || (document.contactform.targetothers.value != ""))
		{ document.contactform.targetchkEditorial.focus();} 
	else { alert ("Please choose the service you are interested in."); document.contactform.targetchkEditorial.focus(); return false; }
				
 return true;
}

//-->		