<!--
	function openWindow(url, name, width, height, left, top, center, scrollBars)
	{
		var leftPos;
		var topPos;
		var showScrollBars;
		
		leftPos = left;
		topPos = top;
		
		if (scrollBars == true)
			showScrollBars = "yes";
		else
			showScrollBars = "no";

		if (center == true)
		{
			leftPos = Math.round((screen.width - width) / 2);
			topPos = Math.round((screen.height - height) / 2);
		}
		
		return window.open(url, name, 'left=' + leftPos + ',top=' + topPos + ',height=' + height + 'px,width=' + width + 'px,scrollbars=' + showScrollBars + ',status=no');
	}
//-->
