
function textHighLight(thecolor) { if (navigator.appVersion.indexOf('MSIE') > 0) { eval("window.event.srcElement.style.color = \"#" + thecolor + "\""); } }
	function cursorHand() { window.event.srcElement.style.cursor = 'hand'; }
	function displayObject(objectname, status) {
		if (status == 1) {
			document.all[objectname].style.visibility = 'inherit';
			document.all[objectname].style.display = 'inline';
		} else {
			document.all[objectname].style.visibility = 'hidden';
			document.all[objectname].style.display = 'none';
			}
		}

