function showImage(URL, W, H)
{
		ScreenW = window.screen.width;
		ScreenH = window.screen.height;
		Left    = Number((ScreenW - W) / 2);
		Top     = Number((ScreenH - H) / 2);
		if(W > ScreenW || H > ScreenH){
		Wnd = open('', '_blank', 'width='+ W +', height='+ H +', left=0, top=0, fullscreen=no, '+
		'location=no, menubar=no, toolbar=no, resizable=yes, scrollbars=yes, status=no');
		}
		else{
		Wnd = open('', '_blank', 'width='+ W +', height='+ H +', left='+ Left +', top='+ Top +', fullscreen=no, '+
		'location=no, menubar=no, toolbar=no, resizable=no, scrollbars=no, status=no');
		}
		Wnd.document.write('<HTML><HEAD><TITLE>Pleer :: Ôîòî</TITLE>');
		Wnd.document.write('<STYLE>BODY {padding: 0px; margin: 0px;}</STYLE></HEAD>');
		Wnd.document.write('<BODY>');
		Wnd.document.write('<table width="100%" height="100%" cellpadding=\"0\" cellspacing=\"0\">');
		Wnd.document.write('<tr><td><IMG src="'+ URL +'" ondrag="return false;" oncontextmenu="return false;"></td></tr>');
		Wnd.document.write('</table>');
		Wnd.document.write('</BODY></HTML>');
}


