function CheckAuswahlLanguage( self) {
	for (i = 0; i < self.length; ++i){
		if (self.options[i].selected == true){
			document.cookie= "lang="+self.options[i].value;
			location.reload();
		}
	}
}

function topic4all(){
	//topicbox_{POS}
	//<select size="1" name="TOPIC_78" id="topicbox_1">
	box= document.getElementById("topicbox_1");
	sel= 0;
	for (i = 0; i < box.length; ++i){
			if (box.options[i].selected == true){
				sel= i;
				break;
			}
	}
	
	for( b= 2;;++b){
		box= document.getElementById("topicbox_"+b);
		if( box){
			for (i = 0; i < box.length; ++i){
				box.options[i].selected= false;
			}
			box.options[sel].selected= true;
		}else{
			break;
		}
	}
}