function checkValid()
{
	if(Trim(document.frmcontactus.vName.value)=="")
	{
		alert(MSG_ENTER_FULL_NAME);
		document.frmcontactus.vName.focus();
		return false;
	}

	if(Trim(document.frmcontactus.vEmail.value)=="")
	{
		alert(MSG_ENTER_CONT_EMAIL);		
		document.frmcontactus.vEmail.focus();
		return false;
	}
	
	if(!isValidEmail(document.frmcontactus.vEmail.value))
	{
		document.frmcontactus.vEmail.focus();
		return false;
	}
	if(Trim(document.frmcontactus.vSubject.value)=="")
	{
		alert(MSG_ENTER_SUBJ);
		document.frmcontactus.vSubject.focus();
		return false;
	}
	if(Trim(document.frmcontactus.vComment.value)=="")
	{
		alert(MSG_TYPE_COMMENTS);
		document.frmcontactus.vComment.focus();
		return false;
	}
	
}


