<!--

var titulopordefecto = "Arquitectura y Construccion";
var ventana;
var cont=0;

function verfoto(cual,titulo)
{
if(cont==1){ventana.close();ventana=null}
if(titulo==null){titulo=titulopordefecto}
ventana=window.open('','ventana','resizable=yes,scrollbars=yes')
ventana.document.write('<html><head><title>' + titulo + '</title></head><body style="overflow:hidden" marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" scroll="no" onUnload="opener.cont=0"><table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%" bgcolor="#CCCCCC"><tr><td valign="middle"><div align="center"><a href="#" onClick="window.close();"><img border="0" src="' + cual + '" onLoad="opener.redimensionar(this.width, this.height)"></a></div></td></tr></table>' + '</body></html>');
ventana.document.close();
cont++;
}
function redimensionar(ancho, alto)
{
  if (typeof document.body.style.maxHeight != "undefined") {
  // IE 7, mozilla, safari, opera 9
  //version IE 7.0 XP ventana.resizeTo(ancho+18,alto+85);
    if ((window)&&(window.netscape)&&(window.netscape.security)) {
      ventana.resizeTo(ancho+14,alto+54);
    } else { ventana.resizeTo(ancho+18,alto+85); }
  } else {
  // IE6, older browsers
  //version IE 6.0 98 ventana.resizeTo(ancho+12,alto+38);
  if ((navigator.userAgent.indexOf('Win') != -1) && (navigator.userAgent.indexOf('98') != -1)) { ventana.resizeTo(ancho+14,alto+34); }
  else { ventana.resizeTo(ancho+20,alto+55); }
}
//ventana.resizeTo(ancho+20,alto+55);
ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2);
}
//-->
//version IE 7.0 XP ventana.resizeTo(ancho+18,alto+85);
//version IE 6.0 98 ventana.resizeTo(ancho+12,alto+38);
//version IE 6.0 XP ventana.resizeTo(ancho+20,alto+55);
