var menuFwServer = "";

/* Menu functions */
function goOn(obj) {obj.className = "topMenuO";}
function goOff(obj) {obj.className = "topMenu";}
function goOnIcon(obj) {obj.className = "topMenuIconO";}
function goOffIcon(obj) {obj.className = "topMenuIcon";}
function goTo(url,target) {
	if(target != "null") {
		if(parent.frames[target]){ parent.frames[target].document.location = url;
		} else if(target == 'main') {	parent.document.location = url;
		} else if(target == '_top') {	parent.parent.document.location = url;
		} else { window.open(url); }
	} else {
		document.location = url;
	}
}
function lmGoOn(obj,level) {obj.className = "l"+level+"o";}
function lmGoOff(obj,level) {obj.className = "l"+level;}

/*------------------------------------------------------------------------------------------------------------------------------*/
var robotHTML = "";

/* Keep this in case the calling for it has not been removed in the html-code */
function writeRobotCode() {}

/*------------------------------------------------------------------------------------------------------------------------------*/
/* general functions */
function showLayer(lyrID) {if (document.all[lyrID]) {document.all[lyrID].style.visibility = "visible";} return;}
function hideLayer(lyrID) {if (document.all[lyrID]) {document.all[lyrID].style.visibility = "hidden";} return;}
