	Display = function (x) {
		var objMore = document.getElementById('more' + x);
		var objLink = document.getElementById('button' + x);
		var objHeader = document.getElementById('header' + x);
		if (window.getComputedStyle) {
			var strDisplay = window.getComputedStyle(objMore,null).display;
		} else if (objMore.currentStyle) {
			strDisplay = objMore.currentStyle.display;
		}
		//document.write(strDisplay); -------- For testing purposes only
		if (strDisplay == 'inline') {
			objHeader.style.background = 'url(images/plus.gif) no-repeat left #ffffff';	
			objMore.style.display = 'none';
		} else {
	//The code below is not included because IE cannot change the onclick attribute
	//This makes the Hide Function redundant
			//objLink.setAttribute('onclick','Hide(' + x + ')');
			objMore.style.display = 'inline';
			objHeader.style.background = 'url(images/minus.gif) no-repeat left #ffffff';
		}
	};
//	Hide = function (x) {
//		var objMore = document.getElementById('more' + x);
//		var objLink = document.getElementById('button' + x);
//		var objHeader = document.getElementById('header' + x);
//		objMore.style.display = 'none';
//		objLink.setAttribute('onclick','Display(' + x + ')');
//		objHeader.style.background = 'url(images/plus.gif) no-repeat left #CC0000';
//	}
