function Validaciones(thisfrm) {
	
    //Que haya indicado el nombre
	if (thisfrm.name.value == "")  {			
		alert(fdic.trad(disAlertName,null));  //thisfrm.name.focus(); 
		return false;
	}              
	//Que haya indicado el apellido
	if (thisfrm.lastname.value == "") {			
		alert(fdic.trad(disAlertLastName,null)); thisfrm.lastname.focus(); 
		return false;
	}          
	//Que haya indicado el Email.	
	if (thisfrm.email.value == "") {			 
		alert(fdic.trad(disAlertEmail,null)); thisfrm.email.focus(); 
		return false;
	}        				
	return true;	
}



