// Popup
function neues_fenster(url,fensterName,x,y,pos_x,pos_y){	
	f01="toolbar=no,";
	f02="location=no,";	
	f03="directories=no,";
	f04="status=no,";
	f05="menubar=no,";
	f06="scrollbars=no,";
	f07="resizable=no,";
	f08="copyhistory=no,";
	f09="width="+x+",";
	f10="height="+y+",";
	f11="screenX="+pos_x+",";
	f12="screenY="+pos_y+",";
	f13="top="+pos_y+",";
	f14="left="+pos_x+",";
	
	fensterEigenschaften=f01+f02+f03+f04+f05+f06+f07+f08+f09+f10+f11+f12+f13+f14;
	
	window.open(url,fensterName,fensterEigenschaften);
}

// Bildaustausch
function img_act(imgName){
	imgOn = eval(imgName + "on.src");
	document [imgName].src = imgOn;
}

function img_inact(imgName){
	imgOff = eval(imgName + "off.src");
	document [imgName].src = imgOff;
}  