<!--
// contactar.js
// © Copyright 2002, jcVieira <jcv@canaldous.com>

function validarCampos() {
	var faltaInformacion = "";

	// empresa
	if( document.form.company.value == "" ) {
		faltaInformacion += "\n     -  Company (left blank)";
	}
	
	// dirección
	if( document.form.direccion.value == "" ) {
		faltaInformacion += "\n     -  Address (left blank)";
	}
	
	// ciudad
	if( document.form.ciudad.value == "" ) {
		faltaInformacion += "\n     -  City (left blank)";
	}

	// provincia
	if( document.form.provincia.value == "" ) {
		faltaInformacion += "\n     -  Province (left blank)";
	}

	// código postal
	if( document.form.codigopostal.value == "" ) {
		faltaInformacion += "\n     -  Postal Code (left blank)";
	}

	// país
	if( document.form.pais.value == "" ) {
		faltaInformacion += "\n     -  Country (left blank)";
	}
	
	// nombre
	if( document.form.nombre.value == "" ) {
		faltaInformacion += "\n     -  First Name (left blank)";
	}
	
	
	// apellidos
	if( document.form.apellidos.value == "" ) {
		faltaInformacion += "\n     -  Last Name (left blank)";
	}
	
	// teléfono
	if( document.form.telefono.value == "" ) {
		faltaInformacion += "\n     -  Telephone Number (left blank)";
	}
	
	// correo electrónico
	if( ( document.form.email.value == "" ) || ( document.form.email.value.indexOf('@') == -1 ) || ( document.form.email.value.indexOf( '.' ) == -1 ) ) {
		faltaInformacion += "\n     -  E-mail (left blank or not valid)";
	}	

	// salida
	if (faltaInformacion != "") {
		faltaInformacion ="____________________________________________________________\n" +
			"You must fill in the following fields correctly:\n" +
			faltaInformacion + "\n____________________________________________________________" +
			"\nPlease, check the form and try again!";
		alert(faltaInformacion);
		return false;
	}

	else return true;
}
//-->
