/* Copyright by Xplora comunicació visual www.xploravisual.com */

function Validate (formulario)
	{
	var nombre=formulario.nombre.value;

	if ( nombre == "" )
		{
		Error = ":::::::::::::::::::::: BodaWeb.net ::::::::::::::::::::::\n\n"
			+ "Debe indicarnos su nombre.\n\n"
			+ "Por favor, revise el formulario.\n\n";
		alert(Error);
		formulario.nombre.focus();
		return false;
		}
		
	var email=formulario.email.value;

	if ( email == "" )
		{
		Error = ":::::::::::::::::::::: BodaWeb.net ::::::::::::::::::::::\n\n"
			+ "Debe indicarnos su e-mail.\n\n"
			+ "Por favor, revise el formulario.\n\n";
		alert(Error);
		formulario.email.focus();
		return false;
		}

	var asunto=formulario.asunto.value;
	
	if ( asunto == "" )
		{
		Error = ":::::::::::::::::::::: BodaWeb.net ::::::::::::::::::::::\n\n"
			+ "Debe indicarnos el asunto de contacto.\n\n"
			+ "Por favor, revise el formulario.\n\n";
		alert(Error);
		formulario.asunto.focus();
		return false;
		}
		
	if (formulario.acepto.checked) { 
	} else {
		Error = ":::::::::::::::::::::: BodaWeb.net ::::::::::::::::::::::\n\n"
			+ "Debe aceptar nuestras condiciones de Política de privacidad.\n\n"
			+ "Por favor, revise el formulario.\n\n";
		alert(Error);
		formulario.acepto.focus();
		return false;
	}

		
	return true;
	}
