		// JavaScript Document
		function SendContact()
		{
			
			if (trim(document.FrmSendContact.NAMEC.value)=="")
			{
				alert("Please enter a valid name");
				document.FrmSendContact.NAMEC.focus();
				return false;			
			}
			
			if (trim(document.FrmSendContact.EMAILC.value)=="")
			{
				alert("Please enter a valid email address");
				document.FrmSendContact.EMAILC.focus();
				return false;
			}
				
			if (!checkMail(trim(document.FrmSendContact.EMAILC.value)))
			{
				alert("Please enter a valid email address");
				document.FrmSendContact.EMAILC.focus();
				return false;
			}
			
			if (trim(document.FrmSendContact.SUBJECT.value)=="")
			{
				alert("Please enter a valid subject");
				document.FrmSendContact.SUBJECT.focus();
				return false;			
			}
			
			if (trim(document.FrmSendContact.COMMENT.value)=="")
			{
				alert("Please enter a valid comment");
				document.FrmSendContact.COMMENT.focus();
				return false;			
			}	
			document.FrmSendContact.submit();		
		}