adesso è stato apportato anche il titolo alla popup gallery...
ma è errata la parte del centramento (in rosso)



<HTML>
<HEAD>
<script language='javascript'>
var daurl1=document.location.href;
var daurl=daurl1.split('?');
var daurl1=daurl[1].split('&');
var daurl=daurl1[1].split('%20').join(' ');
document.title=daurl;

var picUrl=daurl1[0];
var NS = (navigator.appName=="Netscape")?true:false;

function FitPic() {
iWidth = (NS)?window.innerWidth:document.body.clientWidth;
iHeight = (NS)?window.innerHeight:document.body.clientHeight ;
iWidth = document.images[0].width - iWidth;
iHeight = document.images[0].height - iHeight;
window.resizeBy(iWidth, iHeight);

itop = (screen.height - document.images[0].height) / 2;
ileft = (screen.width - document.images[0].width) / 2;
window.moveBy(itop, ileft);


self.focus();
}
</script>
</HEAD>
<BODY onload='FitPic();' topmargin="0" marginheight="0" leftmargin="0" marginwidth="0">
<script language='javascript'>
document.write( "[img]" + picUrl + "[/img]" );
</script>
</BODY>
</HTML>