function validar_form(registro) { 
r=1;
//alert ("hola pichon");
if (registro.nombre.value==""){ 
	r=0; 
	if(registro.lang.value=="es")alert("Introduzca su Nombre..."); else alert("Please input your name...");
	registro.nombre.focus();
	registro.nombre.style.border="1px solid #999999";
	return false; }
else 
	registro.nombre.style.border="1px solid #cccccc"; 


if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(registro.correo.value)){
	r=1; 
	registro.correo.style.border="1px solid #cccccc";  }
else{ 
	r=0; 
	if(registro.lang.value=="es") alert("Introduzca un Email correcto"); else  alert("Please input a correct mail..."); 
	registro.correo.focus(); 
	registro.correo.style.border="1px solid #999999"; 
	return false; }


if (registro.asunto.value==""){ 
	r=0; 
	if(registro.lang.value=="es") alert("Elija asunto..."); else alert("The subjetc box is empty...");
	registro.asunto.focus();
	registro.asunto.style.border="1px solid #999999";
	return false; }
else 
	registro.correo.style.border="1px solid #cccccc"; 

if (registro.mensaje.value==""){ 
	r=0; 
	if(registro.lang.value=="es") alert("Por favor escriba su mensaje"); else alert("The message box is empty");
	registro.mensaje.focus();
	registro.mensaje.style.border="1px solid #999999";
	return false; }
else 
	registro.mensaje.style.border="1px solid #cccccc"; 

if (r==0)  return false; 
else  return true; 
} 