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.FullName.value.charAt(0) == " " ) {
	   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.Phone.value.charAt(0) == " "){
		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<2) {
	   alert("Please enter the comments...");
	   d.comments.select();
	   d.comments.focus();
           return false;
	}


	return true;
}

 
