﻿function initialize() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(42.459468,-2.458152),15);
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		map.setMapType(G_NORMAL_MAP);
		map.enableScrollWheelZoom();
		map.enableContinuousZoom();
		var point = new GLatLng(42.459468,-2.458152);
		map.addOverlay(new GMarker(point));
	}
}

function validar() {
	errores = '';
	if ((document.formulario.nombre.value == '') && (document.formulario.empresa.value == '')) {
		errores = '- nombre o empresa\n';
	}
	if ((document.formulario.email.value == '') && (document.formulario.telefono.value == '')) {
		errores = errores + '- e-mail o tel\éfono\n';
	}
	if (document.formulario.consulta.value == '') {
		errores = errores + '- consulta\n';
	}
	if (errores == '') {
		return true;
	} else {
		alert('Los siguientes campos son obligatorios:\n\n' + errores);
		return false;		
	}
}
