<!--

function goRegion() {
	window.location=document.footer.regselect.options[document.footer.regselect.selectedIndex].value
}

function goApplication() {
	window.location=document.footer.appselect.options[document.footer.appselect.selectedIndex].value
}

function showIt(id) {
	if (document.getElementById) {
		obj = document.getElementById([id]);
		obj.style.visibility="visible";
	}
	else if (document.layers && document.layers[id]) {
		document.layers[id].visibility = 'visible';
	}
	else {
		obj = document.all[id];
		obj.style.visibility = "visible"
	}
}
					  
function hideIt(id) {
	if (document.getElementById) {
		obj = document.getElementById([id]);
		obj.style.visibility = "hidden";
	}
	else if (document.layers && document.layers[id]) {
		document.layers[id].visibility = 'hidden';
	}
	else {
		obj = document.all[id];
		obj.style.visibility = "hidden"
	}
}

-->