
function muestrahoteles(numerohoteles) 
{
var texto
var mostrar
ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false
if (ns4)
if (document.hotel1.visibility == "show" ||document.hotel1.visibility == "")
  mostrar="hide"
else
  mostrar="show"
if (ie4)
if (hotel1.style.visibility == "visible" || hotel1.style.visibility == "")
  mostrar="hidden"
else
  mostrar="visible"

if (ns4) 
{
  for (i=1; i<=numerohoteles; i++)
  {
   texto="document.hotel"+ i;
   eval(texto).visibility = mostrar;
  }
}
else {
  for (i=1; i<=numerohoteles; i++)
  {
   texto="hotel"+ i +".style";
   eval(texto).visibility = mostrar;
  }
}

}



function muestrapois(numeropois) 
{
var texto
var mostrar
ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false
if (ns4)
if (document.pois1.visibility == "show" ||document.pois1.visibility == "")
  mostrar="hide"
else
  mostrar="show"
if (ie4)
if (pois1.style.visibility == "visible" || pois1.style.visibility == "")
  mostrar="hidden"
else
  mostrar="visible"

if (ns4) 
{
  for (i=1; i<=numeropois; i++)
  {
   texto="document.pois"+ i;
   eval(texto).visibility = mostrar;
  }
}
else {
  for (i=1; i<=numeropois; i++)
  {
   texto="pois"+ i +".style";
   eval(texto).visibility = mostrar;
  }
}

}





function muestraempresas(numeroempresas) 
{
var texto
var mostrar
ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false
if (ns4)
if (document.empresa1.visibility == "show" ||document.empresa1.visibility == "")
  mostrar="hide"
else
  mostrar="show"
if (ie4)
if (empresa1.style.visibility == "visible" || empresa1.style.visibility == "")
  mostrar="hidden"
else
  mostrar="visible"

if (ns4) 
{
  for (i=1; i<=numeroempresas; i++)
  {
   texto="document.empresa"+ i;
   eval(texto).visibility = mostrar;
  }
}
else {
  for (i=1; i<=numeroempresas; i++)
  {
   texto="empresa"+ i +".style";
   eval(texto).visibility = mostrar;
  }
}

}





