// (c) Peter-Michael Mangold / Stuttgart / 2003 - 2011

{
	//Aufruf für eigene css-Teile
	MyCSS=""
	MyCSS=MyCSS+"<style type=\"text/css\">";
	MyCSS=MyCSS+"a:link, a:visited { text-decoration:none ;} ;a:hover { text-decoration:underline; color: #6E0027 ;}";
	MyCSS=MyCSS+"body {background-color: #ffffff; background-image: url('http://www.ourself.de/ourself/images/hintergrund_vbt.jpg'); background-repeat: repeat; background-attachment: fixed; margin: 0; background-position: center 50%; }"
	MyCSS=MyCSS+"</style>";
	MyCSS=MyCSS+"<link rel='shortcut icon' href='vbt.ico'>";
	document.write(MyCSS);
}


function Oeffnen(liste)
{
	var index = liste.options.selectedIndex;
	
	if (index == 0) return null;
	
	var auswahl = liste.options[index];
	var text = auswahl.text;
	var value = auswahl.value;
	
	window.open(value,taget="_self");
}

