A ver si este script de tunait
te sirve:
Código PHP:
<script language="javascript">
//Script realizado por tunait
var ventana
var cont=0
var titulopordefecto = "Fotografías"
function foto(cual,titulo)
{
if(cont==1){ventana.close();ventana=null}
if(titulo==null){titulo=titulopordefecto}
ventana=window.open('','ventana','resizable=no,scrollbars=no')
ventana.document.write('<html><head><META HTTP-EQUIV="imagetoolbar" CONTENT="no"><title>' + titulo + '</title></head><body onclick="self.close()" style="cursor:hand; overflow:hidden" marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" scroll="no" onUnload="opener.cont=0"><img src="' + cual + '" onLoad="opener.redimensionar(this.width, this.height)">')
ventana.document.close()
cont++
}
function redimensionar(ancho, alto)
{
ventana.resizeTo(ancho+12,alto+28)
ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2) //centra la ventana. Eliminar si no se quiere centrar el popup
}
</script>
Yo lo utilizo y me sirve perfecto...