<!--
	// Pop-up Window
	window.onerror = null;
	function vers(sName, sVersion, sPlatform) {
		var	bName = false, bVersion = false, bPlatform = false;
		if (sName) {sName += ""; bName = (navigator.appName.indexOf(sName) != -1)} else bName = true;
		if (sVersion) {sVersion += ""; var sVersionLen = sVersion.length; bVersion = (navigator.appVersion.substring(0, sVersionLen) == sVersion)} else bVersion = true;
		if (sPlatform) {sPlatform += ""; bPlatform = (navigator.appVersion.indexOf(sPlatform) != -1)} else bPlatform = true;
		return (bName && bVersion && bPlatform);
	}
	function createPopWin(popName, popWidth, popHeight, popResize) {
		if (popName == "")   { var popName = "ArtWin" }
		if (popWidth == "")  { var popWidth = 295 }
		if (popHeight == "") { var popHeight = 410 }
		if (popResize == "") { var popResize = "yes" }
		var windowParams = "width=" + popWidth + ",height=" + popHeight + ",toolbar=0,directories=0,menubar=0,status=yes,resizable=" + popResize + ",location=0,scrollbars=yes,copyhistory=0";
		createWindow("", popName, windowParams);
	}
	function createWindow(sLink, sName, sParams) {
		PopWinRef = window.open(sLink, sName, sParams);
		if (vers("Netscape", 2, "Mac"))
			PopWinRef.opener = window;
	}
//-->