var Opened=false;
function OpenWindow(PageSrc,Width,Height)
{
	if(0 != PageSrc.indexOf('http'))
	{
		if(0 != PageSrc.indexOf('/'))
			PageSrc = '/' + PageSrc;
		PageSrc = 'http://arkturshow.ru' + PageSrc;
	}

	Features="top=50,left=100,width="+Width+",height="+Height+",toolbar=no,menubar=no,location=no,directories=no,scrollbars=yes,resizable=no";
	if ((!Opened) || (NewWin.closed))
	{
		Opened=true;
		NewWin=window.open(PageSrc,"NewWindow",Features);
		NewWin.focus();
	}
	else
	{
		if ((Opened) || (!NewWin.closed))
		{
			NewWin.location=PageSrc;
			NewWin.focus();
		}
	}
}

function ShowHTML(filename, width, height)
{
	win = window.open('http://arkturshow.ru/'+filename, '', 'width='+width+',height='+height);
//	win.document.write('<html><head></head><body style="margin: 0px; padding: 0px;"><img src="/images/uploads/'+filename+'" width="'+width+'" height="'+height+'" alt="" border="0" /></body></html>');
}

function ShowImage(imgname, width, height)
{
	win = window.open('http://arkturshow.ru/'+imgname, '', 'width='+(width+20)+',height='+(height+20));
	win.document.writeln('<html>');
	win.document.writeln('<head>');
	win.document.writeln('<title>Галлеря АРКТУР ШОУ наша профессия проведение праздника</title>');
	win.document.writeln('<meta http-equiv="content-type" content="text.php; charset=windows-1251"/>');
	win.document.writeln('<meta name="keywords" content=""/>');
	win.document.writeln('<meta name="description" content=""/>');
	win.document.writeln('<link rel=stylesheet href="styles.css" type="text/css"/>');
	win.document.writeln('<link rel=stylesheet href="styles_new1.css" type="text/css"/>');
	win.document.writeln('</head>');
	win.document.writeln('<body>');
	win.document.writeln('<img src="/images/uploads/gallery/'+imgname+'" border="0" width="'+width+'" height="'+height+'"/>');
	win.document.writeln('</body>');
	win.document.writeln('</html>');
}
