// SCRIPT DE VALIDACION DE FORMULARIO DE INFORMACION


function Tamano(form) {
	if (form.Comentarios.value.length >= 201){
		alert("\r\rHa introducido " + form.Comentarios.value.length + " caracteres en los comentarios.\r\rEl espacio maximo previsto es de 200 caracteres, por favor, intente reducir el contenido.\r\rGracias.");
		form.Comentarios.focus();
	}
}

function validaForm() {
	var mandar = 0;
	var control = 0;
	var vMensaje = "";
	var vOtros = 1;
	var vNumOpciones = 0;
	if (document.SolicInfo.Telefono.value=="" && document.SolicInfo.Email.value=="") {
		alert("\r\rSe debe especificar un teléfono o una dirección de correo electrónico.");
		mandar = 1;
	}
	if (mandar==0) {
		vMensaje = "\r\rNOMBRE: " + document.SolicInfo.Nombre.value + "\r";
		vMensaje = vMensaje + "DIRECCION: " + document.SolicInfo.Direccion.value + "\r";
		vMensaje = vMensaje + "E-MAIL: " + document.SolicInfo.Email.value + "\r";
		vMensaje = vMensaje + "POBLACION: " + document.SolicInfo.Poblacion.value + "\r";
		vMensaje = vMensaje + "PROVINCIA: " + document.SolicInfo.Provincia.value + "\r";
		vMensaje = vMensaje + "CODIGO POSTAL: " + document.SolicInfo.CPostal.value + "\r";
		vMensaje = vMensaje + "TELEFONO: " + document.SolicInfo.Telefono.value + "\r";
		vMensaje = vMensaje + "FAX: " + document.SolicInfo.Fax.value + "\r";
		vMensaje = vMensaje + "COMENTARIOS: " + document.SolicInfo.Comentarios.value + "\r";

		document.correo.mensaje.value = vMensaje;
		document.correo.subject.value="SOLICITUD DE INFORMACION";
		document.correo.recipient.value= "secretaria@apeugeot.org";
		document.correo.submit();
	}
	return false;
}
