	function Toggle(MId, DId)
	{
		if(DId.style.display == 'none') {DId.style.display=''; MId.src = "images/MINUS.bmp";}
		else {DId.style.display='none'; MId.src = "images/PLUS.bmp";}
	}
	function jsNewWindow(jsTarget, jsWidth, jsHeight, scroll)
	{
		if (jsWidth == null) {jsWidth = 320;}
		if (jsHeight == null) {jsHeight = 270;}
		window.open(jsTarget,"","width=" + jsWidth + ",height=" + jsHeight + ",toolbar=no,menubar=no,location=no,scrollbars=" + scroll + ",resizable=no");
	}
