this.name='shEAMainWnd';
this.focus();
function displayImage(myimage, mytitle) {
html = "
" + mytitle + "" +
"" +
"
Inchide fereastra
" +
"";
popup=window.open
('','image','height=1, width=1, top=2000, left=2000, toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
popup.document.open();
popup.document.write(html);
popup.focus();
//popup.document.close()
}
function popUpGallery(poza , widthO, heightO, basePath) {
var x = (screen.width-widthO)/2;
y = (screen.height-heightO)/2;
OpenWin = this.open(basePath+"popup.html?poza="+poza+"&screenWidth="+widthO+"&screenHeight="+heightO, "CtrlWindow", "width="+widthO+",height="+heightO+" toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no, screenX="+x+", screenY="+y+", left="+x+", top="+y);
}