

//*****************************************************************************
// Scroller constructor.
//*****************************************************************************
function newImage(arg) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
}

  


			function BigImage(sTitle, nSize, ImageName, w, h)
			{
				newWindow=window.open("","ImageName","toolbar=no,location=no,directories=no,status=no,menubar=no,fullscreen=no,scrollbars=no,resizable=no,width="+w+",height="+h+"");
				newContent="<html><head><script>self.moveTo((screen.width - "+w+")/ 2  , (screen.height - "+h+") / 2 );  </sc"+"ript><LINK REL=stylesheet HREF=kosmos.css TYPE=text/css><title>«ÎÎÎ ÈÑÊÎÆ»</title></head><body bgcolor=#e8eaf5 marginheight=0 marginwidth=0 topmargin=0 leftmargin=0><table width=100% height=100%><tr><td align=center valign=middle class=menu>"+sTitle+"<br><img src="+ImageName+" alt=\""+nSize+" \"><br><br><a class=menu href=javascript:window.close()>Çàêðûòü îêíî</a></td></tr></table></body></html>"
				newWindow.document.writeln(newContent);
				newWindow.document.close();
			}

//*****************************************************************************

