<!--
function validateForm(cpContact){
if(document.cpContact.name.value==false)
	{
		alert("Please enter your Name")
		document.cpContact.name.focus()
		return false
	}

if(document.cpContact.email.value==false)
	{
		alert("Please enter your Email Address")
		document.cpContact.email.focus()
		return false
	}
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.cpContact.email.value))
	{
	//return (true)
	}
	else
	{
	alert("Invalid E-mail Address! Please re-enter.")
	document.cpContact.email.focus()
	return (false)
	}

}
//-->