// JavaScript Document
function DaFoco() {	setTimeout("ventana.focus()",100) }
<!-- Para abrir la ventana -->
var ventana;
var titulopordefecto = "www.comerciodetuciudad.com"; //Si no se especifica un título al llamar a la función colocará el que se especifique aquí
var cont=0;
function abrefoto(foto,titulo)
{
// Si descomentamos esta linea, la ventana se cierra y se abre cada vez (no es necesario si utilizamos el onLoad="opener.daFoco()" en el poput)
//if(cont==1){ventana.close();ventana=null} 
if(titulo==null){titulo=titulopordefecto}
var danch = (screen.availWidth / 2)-(400/2); 
var dalt = (screen.availHeight / 2)-(200/2); 
ventana=window.open('','ventana','resizable=yes,scrollbars=no,width=400,height=200,top='+ dalt +',left='+ danch)
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" onLoad="opener.DaFoco()" onUnload="opener.cont=0" onFocus="opener.redimensionar(fotillo.width, fotillo.height)"><img name="fotillo" alt="Pulsa para cerrar" src="' + foto + '" onLoad="opener.redimensionar(this.width, this.height)" onClick="window.close()" style="cursor:hand">');
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
}

function abreswf(foto,titulo)
{
// Si descomentamos esta linea, la ventana se cierra y se abre cada vez (no es necesario si utilizamos el onLoad="opener.daFoco()" en el poput)
//if(cont==1){ventana.close();ventana=null} 
if(titulo==null){titulo=titulopordefecto}
var danch = (screen.availWidth / 2)-(400/2); 
var dalt = (screen.availHeight / 2)-(200/2); 
ventana=window.open('','ventana','resizable=yes,scrollbars=yes,width=105,height=105,top='+ dalt +',left='+ danch)
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="auto" onLoad="opener.DaFoco()" onUnload="opener.cont=0" ><object name="fotillo"  classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="103" height="103"   codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"><param name="movie" value="' + foto +'"><param name="quality" value="high"><PARAM NAME="wmode" VALUE="transparent"><embed src="' + foto + '" wmode="transparent"  width="103" height="103"  quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
ventana.document.close();
cont++;
}

