// JavaScript Document
function valida_mail()
{

//començen les preguntes relatives a les dades personals....
if(document.form.nom.value == ""){ 
	alert("Comlpet name Field!");
	 document.form.nom.focus( );
	return false;
	}	  
if (document.form.email.value == ""){
alert("Comlpet e-mail Field!");
document.form.email.focus( );
return false;
    }
	if (document.form.text.value == ""){
alert("Comlpet Comments Field!");
document.form.text.focus( );
return false;
    }
	
	
}