function OpenWin(URLL, WinID, W, H, name)
{
var w=window.screen.width;
var h=window.screen.height;
var X=Math.ceil((w-W)/2);
var Y=Math.ceil((h-H)/2);
var CWIN=window.open(
   URLL,
   WinID,
   "top="+Y+", left="+X+",width="+W+",height="+H+
   ",scrollbars=0,status=0,menubar=0,resizable=0");
CWIN.document.write("<html><body style='background-color: #0083C7; margin:0;'><title>Фотогалерея. Канал &quot;Teleteen ТВ&quot;<\/title>");
CWIN.document.write("<span style='color: #B54D00; font-weight:bold;'><center>"+name+"</center></span>");
CWIN.document.write("<a href=\"javascript:\" onclick=window.close()>");
CWIN.document.write("<img src='"+URLL+"' width="+W+" height="+H+" alt='' border='0' \/>");
CWIN.document.write("</a>");
CWIN.document.write("<\/body><\/html>")
}
