<!--
var pictureWindow = null; //ablak definialas

function openwin(sourceFile, windowWidth, windowHeight)
	{
		pictureWindow = window.open("", "plainwindow", "width=" + windowWidth + ",height=" + windowHeight + ",top=120,left=20,toolbar=0,location=0,resizable=0,status=0,menubar=0,fullscreen=0,scrollbars=0");

		content = "<html>\n<head>\n\t<title>Zoom</title>\n</head>\n<body marginwidth=\"0\" marginheight=\"0\" topmargin=\"0\" leftmargin=\"0\">\n<a href=\"javascript:window.close()\"><img src=\"" + sourceFile + "\" border=\"0\"></a>\n</body>\n</html>";
		
		pictureWindow.document.write(content);
	}

function openwin2(theURL, windowWidth, windowHeight)
	{
		htmlablak = window.open(theURL, "url", "width=" + windowWidth + ",height=" + windowHeight + ", top=220,left=400, toolbar=0,location=0,resizable=0,status=0,menubar=0,fullscreen=0,scrollbars=0");
	}

function ccw(){ //ablakzaras  ccw = CloseChildWindow
	if (pictureWindow != null){
		if (!pictureWindow.closed)
			pictureWindow.close();
		pictureWindow = null;
	}
}
//-->
