<!--
var textBrowser;			//Text für Browser-Weiche

function objShow(os) {			//Bild sichtbar machen
	if (document.all) {
	document.all[os].style.visibility="visible";
	}
	else if (document.layers) {
	document.layers[os].visibility="show";
	}
	}

function objHide(oh) {			//Bild unsichtbar machen
	if (document.all) {
	document.all[oh].style.visibility="hidden";
	}
	else if (document.layers) {
	document.layers[oh].visibility="hide";
	}
	}

function objMove(om,posLeft,posTop) {	//Bild bewegen
	if (document.all) {
	document.all[om].style.left=posLeft;
	document.all[om].style.top=posTop;
	}
	else if (document.layers) {
	document.layers[om].left=posLeft;
	document.layers[om].top=posTop;
	}
	}

function sound(name) {			//Sound abspielen
	document.embeds[name].play();
	}

function linie(x) {			//Positionsrahmen unterdrücken
	if (document.all) x.blur();
	}

function browserWeiche() {		//Browser-Weiche
	if (document.all) {
	window.location="pause/pause.htm";
	}
	else {
	alert (textBrowser);
	}
	}
//-->
