var ventana
var cont=0
var titulopordefecto = "::VENALSUR - GALERIA DE IMAGENES::" //texto por defecto a mostrar en la barra de título en caso de omitir el argumento titulo

function afoto(cual,titulo)
{
if(cont==1){ventana.close();ventana=null}
if(titulo==null){titulo=titulopordefecto}
ventana=window.open('','ventana','resizable=yes,scrollbars=auto,height=300,width=300')
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" sroll="auto" onUnload="opener.cont=0"><DIV Id="cont1" STYLE= "position:absolute; top:0px; left:0px"><a href="javascript:self.close()"><img src="../comun/cerrargal.gif" border="0"></a></DIV><center><img src="' + cual + '" onLoad="opener.redimensionar(this.width, this.height)">')
ventana.document.close()
cont++
}
function redimensionar(ancho,alto)
{
if (screen.width<=ancho)
ancho=(screen.width*95)/100

if (screen.height<=alto)
alto=(screen.height*95)/100


ventana.resizeTo(ancho+12,alto+28)
ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2) 
}
