function ver_hotel() {
	var hotel = document.getElementById('izq_hoteles').value;
	document.location = 'index.php?ir=hotel&id=' + hotel;
}

function ver_zona() {
	var zona = document.getElementById('izq_zonas').value;
	document.location = 'index.php?ir=zona&id=' + zona;
}

function getObj(name) {
  if (document.getElementById)
  {
  	this.obj = document.getElementById(name);
	this.style = document.getElementById(name).style;
  }
  else if (document.all)
  {
	this.obj = document.all[name];
	this.style = document.all[name].style;
  }
  else if (document.layers)
  {
   	this.obj = document.layers[name];
   	this.style = document.layers[name];
  }
}


function revifa() {
   var peu=new getObj('abaix');
   var alcada=document.body.clientHeight;
   var amplada=document.body.clientWidth;
   alcada-=70;
   amplada=Math.round(amplada/2)-430;

   peu.style.top=alcada+"px";
   peu.style.left=amplada+"px";
}


