function CForm()
{
	if(BlankEntryCheck('CoForm','Description','Description')==false){return false;}

	// EMAIL form validation
	if (!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(document.CoForm.ContactEmail.value))
	{
	alert("Invalid E-mail Address.");
	document.CoForm.ContactEmail.focus();
	return false;
	}
	
document.CoForm.submit();
return true;
}

//* Blank Entry Check *//
function BlankEntryCheck (FormName,ElementName,ElementDescription)
{
var ElementValue = eval("document."+FormName+"."+ElementName+".value");
if(ElementValue  == '')
{
alert('ERROR\n\nBlank entries are not allowed!\n\nMissing Information:\n[' +ElementDescription+ ']');
eval("document."+FormName+"."+ElementName+".focus()");
return (false);
}
}