// JavaScript Document

function comprobarForm()
{
	if (document.getElementById('provincia').value=='')
	{
		document.getElementById('busqueda').action = URL_APP + '/busqueda?pais=' + document.getElementById('pais').value + '&gestion=' + document.getElementById('gestion').value + '&tipov=' + document.getElementById('tipov').value + '&provincia=' + '%' + '&localidad=' + document.getElementById('localidad').value + '&orden=' + document.getElementById('orden').value + '&foto=' + document.getElementById('foto').checked + '&video=' + document.getElementById('video').checked + '&amueblado=' + document.getElementById('amueblado').checked + '&cocina=' + document.getElementById('cocina').checked + '&terraza=' + document.getElementById('terraza').checked + '&parking=' + document.getElementById('parking').checked + '&piscina=' + document.getElementById('piscina').checked + '&jardin=' + document.getElementById('jardin').checked + '&precio=' + document.getElementById('precio').value + '&habitaciones=' + document.getElementById('habitaciones').value + '&superficie=' + document.getElementById('superficie').value;
		document.getElementById('busqueda').submit();
	}
	else
	{
		if (document.getElementById('localidad').value=='')
		{
			document.getElementById('busqueda').action = URL_APP + '/busqueda?pais=' + document.getElementById('pais').value + '&gestion=' + document.getElementById('gestion').value + '&tipov=' + document.getElementById('tipov').value + '&provincia=' + document.getElementById('provincia').value + '&orden=' + document.getElementById('orden').value + '&foto=' + document.getElementById('foto').checked + '&video=' + document.getElementById('video').checked + '&amueblado=' + document.getElementById('amueblado').checked + '&cocina=' + document.getElementById('cocina').checked + '&terraza=' + document.getElementById('terraza').checked + '&parking=' + document.getElementById('parking').checked + '&piscina=' + document.getElementById('piscina').checked + '&jardin=' + document.getElementById('jardin').checked + '&precio=' + document.getElementById('precio').value + '&habitaciones=' + document.getElementById('habitaciones').value + '&superficie=' + document.getElementById('superficie').value;
			document.getElementById('busqueda').submit();
		}
		else
		{
			document.getElementById('busqueda').action = URL_APP + '/busqueda?pais=' + document.getElementById('pais').value + '&gestion=' + document.getElementById('gestion').value + '&tipov=' + document.getElementById('tipov').value + '&provincia=' + document.getElementById('provincia').value + '&localidad=' + document.getElementById('localidad').value + '&orden=' + document.getElementById('orden').value + '&foto=' + document.getElementById('foto').checked + '&video=' + document.getElementById('video').checked + '&amueblado=' + document.getElementById('amueblado').checked + '&cocina=' + document.getElementById('cocina').checked + '&terraza=' + document.getElementById('terraza').checked + '&parking=' + document.getElementById('parking').checked + '&piscina=' + document.getElementById('piscina').checked + '&jardin=' + document.getElementById('jardin').checked + '&precio=' + document.getElementById('precio').value + '&habitaciones=' + document.getElementById('habitaciones').value + '&superficie=' + document.getElementById('superficie').value;
			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', URL_APP + '/home/ajax_cargarProvincia.php?pais=' + document.getElementById('pais').value + '&gestion='+document.getElementById('gestion').value+'&tipov='+document.getElementById('tipov').value,true);
	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', URL_APP + '/home/ajax_cargarLocalidad.php?pais=' + document.getElementById('pais').value + '&gestion='+document.getElementById('gestion').value+'&tipov='+document.getElementById('tipov').value+'&provincia='+document.getElementById('provincia').value,true);
	xmlHttp.send(null);
}

function borraLocalidades()
{
	document.getElementById('divL').innerHTML='<select class="input" id="localidad" name="localidad" size="6" style="width:230px;"></select>';
}

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';
	}
}
