
function jsCloseWindow()
	{
	self.close();
	}

function jsOpenWindowPic(iPicNumber, iJsImageWidth, iJsImageHeigth)
	{
	Wnd = window.open("", "wndImgShow", "resizable=yes, scrollbars=no");
	iJsImageWidth += 100;
	iJsImageHeigth += 120;
	if (iJsImageWidth >	screen.width)
		iJsImageWidth = screen.width;
	if (iJsImageHeigth >	screen.height)
		iJsImageHeigth = screen.height;
	Wnd.moveTo((screen.width-iJsImageWidth)/2,(screen.height-iJsImageHeigth)/2);
	Wnd.resizeTo(iJsImageWidth,iJsImageHeigth);
	Wnd.window.focus();
	Wnd.location.href = "_pic.php?iPicNumber="+iPicNumber;
	}

function jsOpenWindowPicPath(aPicPath, iJsImageWidth, iJsImageHeigth)
{
	Wnd = window.open("", "wndImgShow", "resizable=yes, scrollbars=no");
	iJsImageWidth += 100;
	iJsImageHeigth += 120;
	if (iJsImageWidth >	screen.width)
		iJsImageWidth = screen.width;
	if (iJsImageHeigth >	screen.height)
		iJsImageHeigth = screen.height;
	Wnd.moveTo((screen.width-iJsImageWidth)/2,(screen.height-iJsImageHeigth)/2);
	Wnd.resizeTo(iJsImageWidth,iJsImageHeigth);
	Wnd.window.focus();
	Wnd.location.href = "_pic.php?aPicPath="+aPicPath;
}
