// Ingles
disAlertNLName = "You must enter your Name";
disAlertNLLast = "You must enter your Last Name";
disAlertNLPhone = "You must enter your Phone";
disAlertNLEmail = "You must enter your Email";

function Validaciones(thisform)
{
	
	with (thisform)
	{	
	
	    //Que haya indicado el nombre
		if (name.value == "")
		{			
			alert(disAlertNLName);
			name.focus();
			return false;
		}
        
	    //Que haya indicado el apellido
		if (lastname.value == "")
		{			
			alert(disAlertNLLast);					
			lastname.focus();
			return false;
		}
        
		//Que haya indicado el Email.	
		if (email.value == "")
		{			
			alert(disAlertNLEmail);					
			email.focus();
			return false;
		}
        return true;				
	}
	
}


