function CheckFormCU()
{
	
	if (document.ContactUs.CName.value == "")
		{
		alert ('Please enter your Full Name!');
		document.ContactUs.CName.focus();
		return false;
		} 			

if (/^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/.test(ContactUs.CEmail.value) == false)
		{
		alert ('Email entered is not Valid!');
		document.ContactUs.CEmail.focus();
		return false;
		} 

if (document.ContactUs.Comments.value == "")
		{
		alert ('Please enter your Message!');
		document.ContactUs.Comments.focus();
		return false;
		} 
if (document.ContactUs.imagecheck.value == "")
		{
		alert ('Please enter the Validation Code!');
		document.ContactUs.imagecheck.focus();
		return false;
		} 

	{
	return true;
	}
	
}


function limitText(limitField, limitNum) {
    if (limitField.value.length > limitNum) {
        limitField.value = limitField.value.substring(0, limitNum);
    } 
}	

