// Validating the Contact Us Form
function ContactCheck() {
	d = document.cntctus;

	if (d.FullName.value.length<2) {
	   alert("Please enter the Full Name...");
	   d.FullName.select();
	   d.FullName.focus();
           return false;
	}

	
	if( (d.Phone.value.length<6) ){
		alert("Please enter the Phone No... ");
  		d.Phone.focus();
		d.Phone.select();
		return false;
        } 

	
	if (d.Email.value.length<4){
		alert("Please enter your mail-ID");
  		d.Email.focus();
		d.Email.select();
		return false;
        }
    	
	if (d.Comments.value.length < 5) {
		alert("Please enter the Your Message... ");
  		d.Comments.focus();
		d.Comments.select();
		return false;
        } 

	return true;
}
