
function validateCForm(){
if (document.goCnt.name.value==""){
	document.goCnt.name.focus();
	alert ("Name?");
	return false;
}
if (document.goCnt.email.value.indexOf("@")==-1||document.goCnt.email.value.indexOf(".")==-1)
{
alert ("Email Address must be valid?");
document.goCnt.email.focus();
document.goCnt.email.select();
return false;
}

if (document.goCnt.message.value==""){
	document.goCnt.message.focus();
	alert ("Message?");
	return false;
}

return true;
}