function validar(e) { tecla = (document.all) ? e.keyCode : e.which; if (tecla==8) return true; if (tecla==9) return true; if (tecla==0) return true; pattern = /^[0-9]*$/; te = String.fromCharCode(tecla); return pattern.test(te);}
function load() { if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map")); map.setCenter(new GLatLng(parseFloat(39.842286020743394), parseFloat(-3.076171875)),5);}
}
function submitBusqueda(e){ tecla = (document.all) ? e.keyCode : e.which; if (tecla == 13){ var f = document.getElementById('form_busqueda'); f.submit();}
}
