var wndNewWindow;
var scrwidth, srcheight, leftOffset, topOffset;
function displayWindow(fname, imWidth, imHeight)
{
	scrwidth = window.screen.width;
    scrheight = window.screen.height;
    leftOffset = (scrwidth-imWidth)/2;
    topOffset = (scrheight-imHeight)/2;

    if((scrwidth < imWidth) || (srcheight < imHeight))
            wndNewWindow=open("", "", 
            "toolbar=no,menubar=no,scrollbars=yes,left=0,top=0,directories=no,width="+scrwidth+",height="+scrheight);
    else    wndNewWindow=open("", "", 
            "toolbar=no,menubar=no,scrollbars=no,left="+leftOffset+",top="+topOffset+",directories=no,width="+imWidth+",height="+imHeight);

    wndNewWindow.document.write
        ('<html><head><title>Мария Шарапова</title></head>'+
         '<body topmargin=0 leftmargin=0 bgcolor="FFC933"><a href="javascript: self.close();">'+
         '<img src="'+fname+'" width="'+imWidth+'" height="'+imHeight+'" vspace=0 hspace=0 align=center border=0></a></body>'+
         '</html>'
        );
}

