var titulopordefecto = "Ramiro Jordan | Fotografía";
var ventana;
var cont=0;

function afoto(cual,titulo)
{
if(cont==1){ventana.close();ventana=null}
if(titulo==null){titulo=titulopordefecto}
ventana=window.open('','ventana','resizable=yes,scrollbars=no,titlebar="no"')
ventana.document.write('<html><head><style type="text/css"><!-- body { background: #8C9C5D; } .foto { margin: 20px; } --></style> <title>' + titulo + '</title></head><body style="overflow:hidden" marginwidth="45" marginheight="45" topmargin="45" bottommargin="45" leftmargin="45" rightmargin="45" scroll="no" onUnload="opener.cont=0"><table border="0" align="center" bordercolor="#ffffff" cellpadding="0" cellspacing="0"><tr><td><a href="javascript:window.close()"><img src="' + cual + '" border="0" onLoad="opener.redimensionar(this.width, this.height)"></a></tr></td></table>');
ventana.document.close();
cont++;
}
function redimensionar(ancho, alto)
{
ventana.resizeTo(ancho+110,alto+128);
ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2); //centra la ventana. Eliminar si no se quiere centrar el popup
}
