// JavaScript Document function comprobarForm() { if (document.getElementById('provincia').value=='') { document.getElementById('busqueda').action='../busqueda/index.php?pais=' + document.getElementById('pais').value + '&provincia=' + '%' + '&localidad=' + document.getElementById('localidad').value + '&marca=' + document.getElementById('marca').value + '&modelo=' + document.getElementById('modelo').value + '&version=' + document.getElementById('version').value + '&precioMin=' + document.getElementById('precioMin').value + '&precioMax=' + document.getElementById('precioMax').value + '&km=' + document.getElementById('km').value + '&potencia=' + document.getElementById('potencia').value + '&ano=' + document.getElementById('ano').value + '&combustible=' + document.getElementById('combustible').value + '&color=' + document.getElementById('color').value + '&puertas=' + document.getElementById('puertas').value + '&tipo_vehiculo=' + document.getElementById('tipo_vehiculo').value + '&cambio=' + document.getElementById('cambio').value + '&foto=' + document.getElementById('foto').checked + '&video=' + document.getElementById('video').checked; document.getElementById('busqueda').submit(); } else { if (document.getElementById('localidad').value=='') { document.getElementById('busqueda').action='../busqueda/index.php?pais=' + document.getElementById('pais').value + '&provincia=' + document.getElementById('provincia').value + '&marca=' + document.getElementById('marca').value + '&modelo=' + document.getElementById('modelo').value + '&version=' + document.getElementById('version').value + '&precioMin=' + document.getElementById('precioMin').value + '&precioMax=' + document.getElementById('precioMax').value + '&km=' + document.getElementById('km').value + '&potencia=' + document.getElementById('potencia').value + '&ano=' + document.getElementById('ano').value + '&combustible=' + document.getElementById('combustible').value + '&color=' + document.getElementById('color').value + '&puertas=' + document.getElementById('puertas').value + '&tipo_vehiculo=' + document.getElementById('tipo_vehiculo').value + '&cambio=' + document.getElementById('cambio').value + '&foto=' + document.getElementById('foto').checked + '&video=' + document.getElementById('video').checked; document.getElementById('busqueda').submit(); } else { document.getElementById('busqueda').action='../busqueda/index.php?pais=' + document.getElementById('pais').value + '&provincia=' + document.getElementById('provincia').value + '&localidad=' + document.getElementById('localidad').value + '&marca=' + document.getElementById('marca').value + '&modelo=' + document.getElementById('modelo').value + '&version=' + document.getElementById('version').value + '&precioMin=' + document.getElementById('precioMin').value + '&precioMax=' + document.getElementById('precioMax').value + '&km=' + document.getElementById('km').value + '&potencia=' + document.getElementById('potencia').value + '&ano=' + document.getElementById('ano').value + '&combustible=' + document.getElementById('combustible').value + '&color=' + document.getElementById('color').value + '&puertas=' + document.getElementById('puertas').value + '&tipo_vehiculo=' + document.getElementById('tipo_vehiculo').value + '&cambio=' + document.getElementById('cambio').value + '&foto=' + document.getElementById('foto').checked + '&video=' + document.getElementById('video').checked; document.getElementById('busqueda').submit(); } } } function cargaProvinciaAjax() { var xmlHttp; try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("¡Su explorador no soporta AJAX!"); return false; } } } xmlHttp.onreadystatechange=function() { if(xmlHttp.readyState==4) { document.getElementById('divP').innerHTML=xmlHttp.responseText; } } xmlHttp.open('GET','home/ajax_cargarProvincia.php?pais=' + document.getElementById('pais').value); xmlHttp.send(null); } function cargaModeloAjax() { var xmlHttp; try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("¡Su explorador no soporta AJAX!"); return false; } } } xmlHttp.onreadystatechange=function() { if(xmlHttp.readyState==4) { document.getElementById('divM').innerHTML=xmlHttp.responseText; } } xmlHttp.open('GET','home/ajax_cargarModelo.php?marca=' + document.getElementById('marca').value); xmlHttp.send(null); } function cargaLocalidadAjax() { var xmlHttp; try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("¡Su explorador no soporta AJAX!"); return false; } } } xmlHttp.onreadystatechange=function() { if(xmlHttp.readyState==4) { document.getElementById('divL').style.visibility='visible'; document.getElementById('divL').innerHTML=xmlHttp.responseText; } } xmlHttp.open('GET','home/ajax_cargarLocalidad.php?pais=' + document.getElementById('pais').value + '&provincia='+document.getElementById('provincia').value,true); xmlHttp.send(null); } function borraLocalidades() { document.getElementById('divL').innerHTML=''; } function muestraBusquedaAvanzada() { if (document.getElementById('busquedaAvanzada').value=='false') { document.getElementById('busquedaAvanzada').value='true'; var browser=navigator.appName; var b_version=navigator.appVersion; var version=parseFloat(b_version); if ((browser=="Microsoft Internet Explorer") && (version<=4)) { document.getElementById('divB').style.display='block'; } else { document.getElementById('divB').style.display='table-row'; } } else { document.getElementById('busquedaAvanzada').value='false'; document.getElementById('divB').style.display='none'; } }