function  CheckForm()
{  
	if  (document.form1.txt_name.value.length  =="") 
	{  
		alert("Please enter your name!");
		document.form1.txt_name.focus();
		return  false;
	}

	if  (document.form1.txt_email.value.length  =="")
	{  
		alert("Please enter your Email!");
		document.form1.txt_email.focus();
		return  false;
	}
	
	return  true;

	
}

