function valVacio(texto){
  if (texto.value.length == 0){
		texto.focus();
		return true;		
  }			
  return false;	
}

function valMail(email){
   if (/^([\w-\.])+@([\w-]+\.)+(\w){2,4}$/.test(email.value))
	return true;
	email.focus();
	return false;
}
