// JavaScript Document
<!--

function tabchange (x,spalte,linktext) { 
	//alert ("Hallo"); 
	var style_sp=document.getElementById(spalte).style;
	var style_tl=document.getElementById(linktext).style;
	if (x == 0) { style_sp.background="#FFFF99"; style_tl.color="#9F0000";}
	else { style_sp.background="#9F0000"; style_tl.color="white"; } 
}
function getURL (num) { 
	//alert ("Hallo"); 
	switch (num) {
		case "1": 
			window.location.href="index.htm";
			break;
		case "2": 
			window.location.href="stoa.htm";
			break;
		case "3": 
			// Diese Seite wird nur über diese Funktion aufgerufen
			// Ist Javascript nicht vorhanden -> Es zählen die Links der <a>-Tags  
			window.location.href="events_js.htm";    
			break;
		case "4": 
			window.location.href="karte.htm";
			break;
		case "5": 
			window.location.href="kontakt.htm";
			break;
		default: ;
	}
}



//-->