<!--

	/*##################################################################
	Function "openPopup" will open the pop-up window
	INPUT PARAMS:	# sURL - URL to open
					# sName - Name of the new window
					# nWidth - Width of the popup
					# nHeight - Height of the popup */
	function openPopup(sURL, bScroll, nWidth, nHeight, windowName, menuOn, locationOn, toolBar)
	{
		if (windowName == null)	windowName = "_blank";
		var temp = window.open(sURL, windowName, "height=" + nHeight + ",width=" + nWidth + ",resizable=yes,status=no,toolbar=" + (toolBar == true ? "yes" : "no") + ",menubar=" + (menuOn == true ? "yes" : "no") + ",location=" + (locationOn == true ? "yes" : "no") + ",scrollbars=" + (bScroll == true ? "yes" : "no"));
		temp.opener = self;
	}


-->
