<!--function ShowHideElement(elementID, obj) {	var prop;	if (document.getElementById){ 		prop = document.getElementById(elementID).style;	} else if (document.all){		prop = document.all[elementID].style;	} else if (document.layers){		prop = document.layers[elementID];	}		if (prop.display=='none'){		// If it starts with Show		if(obj.innerHTML.indexOf('Show') == 0){			obj.innerHTML = 'Hide' + obj.innerHTML.substring(4);		}		prop.display = '';	} else {		// If it starts with Hide		if(obj.innerHTML.indexOf('Hide') == 0){			obj.innerHTML = 'Show' + obj.innerHTML.substring(4);		}		prop.display = 'none';	}}function changeText(obj, newText) {	// The original text	var oldText = obj.childNodes[0].innerHTML;	// The original colour	var oldColour = obj.style.borderLeftColor;		// Change the border and text	obj.style.borderLeftColor = "#FF0000";	obj.childNodes[0].innerHTML = newText;		// Change them back on mouse out	obj.onmouseout = function() {		obj.childNodes[0].innerHTML = oldText;		obj.style.borderLeftColor = oldColour;	}		// Change them back on click	obj.onclick = function() {		obj.childNodes[0].innerHTML = oldText;		obj.style.borderLeftColor = oldColour;	}}function changeBorder(obj) {	var oldColour = obj.style.borderLeftColor;		// Change the border and text	obj.style.borderLeftColor = "#FF0000";		// Change them back on mouse out	obj.onmouseout = function() {		obj.style.borderLeftColor = oldColour;	}		// Change them back on click	obj.onclick = function() {		obj.style.borderLeftColor = oldColour;	}}//-->