function validate_comment()
{

 	
  if (document.getElementById('name').value=="")
		 { alert("Tastati un nume!");
		    document.getElementById('name').focus();
		    return false;
		 }
 	
  if (document.getElementById('locality').value=="") 
		{ alert("Tastati localitatea!");
		 document.getElementById('locality').focus();
		 return false;
		 }
	 
   if (document.getElementById('comment').value=="") 
		{ alert("Tastati comentariu!");
		  document.getElementById('comment').focus();
		  return false;
		 }
   if (document.getElementById('email').value=="") 
 	  { 	alert("Va rugam sa complectati o adresa valida!");
			document.getElementById('email').focus();
			return false;
		  
		  }
		 
	if (!checkmail(document.getElementById('email').value)) 
		{
			alert("Va rugam sa complectati o adresa valida!");
			document.getElementById('email').focus();
			return false;
	   }
	document.getElementById('form_comment').submit();	 
		 
}