function verfoto(imagen,titulo,descripcion) {
  t=500;
  w=(screen.width)?(screen.width-t)/2:0;
  h=(screen.height)?(screen.height-t)/2-30:0;
  x=window.open('','zoom','height='+t+',width='+t+',top='+h+',left='+w+',toolbar=0,location=0,directories=0,status=0,scrollbars=0,menubar=0');
  x.document.open();
  x.document.write('<html><head><title>Hotel Comercio - Galeria</title><link href="/css/web.css" rel="stylesheet" type="text/css"/></head>');
  x.document.write('<body class="fondoAzulClaro" style="overflow:hidden;margin:0px" onload="this.focus()">');
  x.document.write('<table width="100%" height="100%" border="0"><tr><td align="center"><table class="galeriafoto"><tr><td><a href="javascript:self.close()"><img src="/img/galeria/'+imagen+'.jpg" border="0" /></a><br/><b>'+titulo+'</b> '+descripcion+'</td></tr></table></td></tr><tr><td align="center"><a href="javascript:self.close()">Cerrar foto</a></td></tr></table>');
  x.document.write('</body></html>');
  x.document.close();
}