    function borde(n,t)
     {
        d=document.getElementById("foto"+n);
        //if (t) d.style.border="ridge"; //2px solid #ffffff";
        //else d.style.border="1px solid #000000"; //"0";
      //  if (t) d.style.backgroundColor="#99ff99"; //"#FFF117";
      // else d.style.backgroundColor="transparent";
       if (t) {
                  d.style.borderLeft="2px solid #000000"; d.style.borderTop="2px solid #000000"; 
                  d.style.borderRight="2px solid #eeffee"; d.style.borderBottom="2px solid #eeffee";
               }
       else {
                  d.style.borderLeft="2px solid #eeffee"; d.style.borderTop="2px solid #eeffee"; 
                  d.style.borderRight="2px solid #000000"; d.style.borderBottom="2px solid #000000";
               }
     }

   var ventana_cal;
   function vercalendario()
    {
        ventana_cal=window.open("","calend","top=20,width=700,height=700,menubar=no,status=no,location=no,scrollbars=yes,resizable");
        ventana_cal.location.href="almanaque.php"; //lo hago de esta manera para que no sea detectado como popup
    }

   var ventana_foto;
   function verfoto(n,t)
    {
        ventana_foto=window.open("","imagen","top=20,width=700,height=560,menubar=no,status=no,location=no,scrollbars=auto,resizable");
        ventana_foto.document.close(); ventana_foto.document.open();
        ventana_foto.document.writeln("<html><head><title>Alojamiento Rural Las Escuevas: fotos</title></head><body bgcolor=#fffbf0 background='iconos/fondofoto1.jpg'><table cellpadding=0 cellspacing=0 border=0 align=center width=100% height=100%><tr><td align=center valign=middle><img style='border:inset' src="+n+"><br>"+t+"<br><a href='javascript:window.close();'>Cerrar</a></center>");
        ventana_foto.document.writeln("<br><img src=m_contadores/micontador.php?url="+n+"&tipo=1&oculto=1></td></tr></table></body></html>");
        ventana_foto.document.close();
        ventana_foto.focus();
    }
  
   function mostrarprecios(n)
    {
       var t=100;
       var a=screen.width;
       if (a>1024) t=t+(a-1024); 
       if (d=document.getElementById("tablaprecios"))
       {
         d.style.left=t;
         if (n) d.style.visibility="visible";
         else d.style.visibility="hidden";
       }
    }
  
  function botones(n,t,j)
   {
     if (d=document.getElementById(t))
      {
         var t=d.className; 
         if (n) d.className="boton"+j+"on";
         else d.className="boton"+j+"off";
        // if (n) d.style.backgroundImage="url('iconos/boton1on.png')";
        // else d.style.backgroundImage="url('iconos/boton1.png')";
      }
   }

  function entradatexto(obj,t)
     {
          var n="datos";   //esta vacio y sin foco
          if (obj.value) n="datosTexto";   //contiene texto sin foco
          if (t) n="datosOn";   //tiene el foco, da igual si tiene texto o esta vacio
   
         obj.className=n;
     }
