// JavaScript Document

function showHide(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
}
	
function doSearch(page) {
	var url = '';
	
	url = 'IDBarrio=' + $('ctl0_dlBarrio').value;
	url += '&IDTipo=' +  $('ctl0_dlTipo').value;
	url += '&Precio=' +  $('ctl0_dlPrecio').value;
	url += '&FechaEntrada=' +  $('ctl0_txtFechaEntrada').value;
	url += '&FechaSalida=' +  $('ctl0_txtFechaSalida').value;
	url += '&Capacidad=' + $('ctl0_dlCapacidad').value;
	url += '&Servicios=' ;
	
	var servicios = document.getElementsByName('ctl0_chkServicio');
	
	var check;
	for(var i=0;i<servicios.length;i++) {
		check = servicios.item(i);
		if(check.checked) {
			url += check.value + ',';
		}
	//	alert(check);
	}
	
	window.location = page + '?' + url;
}