var pWin = null, HTML = ''; 
function picwin(imagename,width,height) { 
if (pWin && !pWin.closed) pWin.close(); 
if (!arguments.length) return; 
HTML = ''; 
HTML += '<html><head><title>ΕΥΚΛΕΙΔΗΣ</title></head>'; 
HTML += '<body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"'; 
HTML += ' onblur="setTimeout(\'self.focus()\',1000)"'; //sticky 
HTML += '><img border="0" src=/images/photo-books/'+imagename+'></body></html>'; 
var left = screen.width/2 - width/2; 
var top = screen.height/2 - height/2;
var chrome = 'status=0,width='+width+',height='+height+',left='+left+',top='+top; 
pWin = open('javascript:opener.HTML','pWin',chrome); 
if (pWin && !pWin.closed) pWin.focus(); 
} 
