

function hideLayer(whichLayer) {
	//var whichLayer = iniStep;
	if (document.getElementById) {
		// this is the way the standards work
		document.getElementById(whichLayer).style.display = "none";
	}
	else if (document.all) {
		// this is the way old msie versions work
		document.all[whichlayer].style.display = "none";
	}
	else if (document.layers) {
		// this is the way nn4 works
		document.layers[whichLayer].display = "none";
	}
}
function showLayer(whichLayer) {
	var iniStep = whichLayer;
	if (document.getElementById) {
		// this is the way the standards work
		document.getElementById(whichLayer).style.display = "block";
	}
	else if (document.all) {
		// this is the way old msie versions work
		document.all[whichlayer].style.display = "block";
	}
	else if (document.layers) {
		// this is the way nn4 works
		document.layers[whichLayer].display = "block";
	}
}
function changeTitle(newTitle){
	if (document.getElementById) {
		// this is the way the standards work
		document.getElementById('mainUtilitiesDisplay').firstChild.nodeValue = newTitle;
	}
	else if (document.all) {
		// this is the way old msie versions work
		document.all['mainUtilitiesDisplay'].firstChild.nodeValue = newTitle;
	}
	else if (document.layers) {
		// this is the way nn4 works
		document.layers['mainUtilitiesDisplay'].firstChild.nodeValue = newTitle;
	}
}