// PopUps
	function jsNewWindow(jsTarget, jsWidth, jsHeight)
	{
		if (jsWidth == null) {
			jsWidth = 600;
		}
		if (jsHeight == null) {
			jsHeight = 400;
		}
		window.open(jsTarget,"","width=" + jsWidth + ",height=" + jsHeight + ",location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,left=100,top=100");
	}
