// ensure support for most browsers when using getElementById()
if((document.all || window.mmIsOpera) && !document.getElementById) {
	document.getElementById = function(id) {
		 return document.all[id];
	}
}

function FIND(item) {
	if( window.mmIsOpera ) return(document.getElementById(item));
	if (document.all) return(document.all[item]);
	if (document.getElementById) return(document.getElementById(item));
	return(false);
}

function showGlobe(divelement) {
	var objdiv 	= document.getElementById(divelement);
	if (objdiv) {
			objdiv.style.visibility = "visible";
	}
}
function hideGlobe(divelement) {
	var objdiv 	= document.getElementById(divelement);
	if (objdiv) {
			objdiv.style.visibility = "hidden";
	}
}

