function funclinkdirect(){        var selection = document.standort.auswahl.selectedIndex;           var link = document.standort.auswahl[selection].value;        if (link != 0 && link != "") document.location.href = link;}function funclinkdirect2(){        var selection = document.quicklink.auswahl.selectedIndex;           var link = document.quicklink.auswahl[selection].value;        if (link != 0 && link != "") document.location.href = link;}function cat_auswahl(){        var selection = document.cat.auswahl.selectedIndex;           var link = document.cat.auswahl[selection].value;        if (link != 0 && link != "") document.location.href = link;}function sub_auswahl(){        var selection = document.sub.auswahl.selectedIndex;           var link = document.sub.auswahl[selection].value;        if (link != 0 && link != "") document.location.href = link;}


function ucm(s, shift) {	var n=0;	var r="";	for(var i=0;i<s.length;i++) { 		n=s.charCodeAt(i); 		if (n>=8364) {n = 128;}		r += String.fromCharCode(n-(shift)); 	}	return r;}function dm(s, shift)	{	location.href=ucm(s, shift);}