function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function ValidarFormulario()
{
Bien=true;
with(window.document.datos)
	{
	if (Nombre.value=="")
	{
		alert("Debe introducir su Nombre.");
		Bien=false;
	}
	if(Bien)
	{
		if(Telefono.value=="")
		{
			alert("Debe introducir un teléfono válido.");
			Bien=false;
		}
	}
	if(Bien)
	{
		if(Email.value=="")
		{
			alert("Debe introducir un Email.");
			Bien=false;
		}
	}
	if(Bien)
	{
		if(!wPrivacidad.checked)
		{
			alert("Se ha de marcar la casilla he comprendido y acepto las politicas de privacidad.");
			Bien=false;
		}
	}
	document.MM_returnValue = (Bien);
	}
	if (Bien)
	{
		window.document.datos.submit();
	}
}

