function Checkall()
{
    if (document.frm.comments.value =='')
	 {
		alert("Enter your comments!");
		document.frm.comments.focus();
		return false;
	   }
	   
	   
	
	if (document.frm.name.value =='') 
	{
		alert("Enter your name!");
		document.frm.name.focus();
		return false;
	  }
	  
	  
	  	if (document.frm.organization.value =='') 
	{
		alert("Enter your organization's name!");
		document.frm.organization.focus();
		return false;
	  }
	  
	  
	
	if (document.frm.address.value =='') {
		alert("Enter your address!");
		document.frm.address.focus();
		return false;
	}


	if (document.frm.phone.value =='') {
		alert("Enter your phone number!");
		document.frm.phone.focus();
		return false;
	}

	document.frm.submit();
	}
