//Abrir Ventana con imagen por Tunait
var ventana
var cont=0
var titulopordefecto = "AndresVG - IMG"
function afoto(cual,titulo)
{
if(cont==1){ventana.close();ventana=null}
if(titulo==null){titulo=titulopordefecto}
ventana=window.open('','ventana','resizable=no,sc rollbars=no,width=50,height=50')
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"><div align="center"><a href="javascript:this.close()"><img src="http://www.andresvg.com/'+cual+'" onLoad="opener.redimensionar(this.width, this.height)" style="border:none"></a></div><div id="Layer1" style="position:absolute; width:1650px; height:1650px; z-index:1; left: 0px; top: -350px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0"  width="1650" height="1650" id="conta" align="middle"><param name="movie" value="demo.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" /><embed src="demo.swf" quality="high" width="1650" height="1650" wmode="transparent" bgcolor="#ffffff" name="conta" align="middle" type="application/x-shockwave-flash" width="1650" height="1650" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"></embed></object></div>')
ventana.document.close()
cont++
}
function redimensionar(ancho, alto)
{
ventana.resizeTo(ancho+5,alto+30)
ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2) //centra la ventana. Eliminar si no se quiere centrar el popup
}