function setInActive(strIndex){
	var ActiveButton="Menu" + strIndex;
	var	ImageSource='images/Menu' + strIndex +'.jpg';
	top.window("Unten").document.images(ActiveButton).src = ImageSource;
	}

function setActive(strIndex, strStatusText, intColor){
	var ActiveButton="Menu" + strIndex;
	var	ImageSource='images/Menu' + strIndex +'Aktiv.jpg';
	top.window("Unten").document.images(ActiveButton).src = ImageSource;
	var a = top.window("Unten").document.all.item("BU");
		if (intColor==0) {
        		a.background="images/BGND-Blau.jpg";
    		} else 
        		a.background="images/BGND-Unten.jpg";
	var a = top.window("Oben").document.all.item("BO");
		if (intColor==0) {
        		a.background="images/BGND-Blau.jpg";
    		} else 
        		a.background="images/BGND-Oben.jpg";
	window.status = strStatusText;
	}

function Fun_SetStatus(strStatusText){
	window.status = strStatusText;
	}

function black(strIndex, strNewSourceName){
	var ImgName = "Menü" + strIndex;
	document.images(ImgName).src = strNewSourceName;
}

function white(strIndex, strNewSourceName){
	var ImgName = "Menü" + strIndex;
	document.images(ImgName).src = strNewSourceName;
}

function openWin(neueUrl, name, neueWidth, neueHeight, neueTop, neueLeft){
  var Optionen = 'width=' + neueWidth + ',height=' + neueHeight + ',top=' + neueTop + ',left=' + neueLeft + ', status=no, menubar=no, resizable=no, scrollbars=no';
  var ProjectWindow = window.open(neueUrl, name, Optionen);
  }