function Go(){
	var BoxNr;//Welche Box wurde ausgewaehlt z.B. 1,2,3....
	var Link;//Ziel z.B. /ensight/index.php
	BoxNr = window.document.SelectBox.area.selectedIndex;
	Link = window.document.SelectBox.area.options[BoxNr].value;
	window.location.href = Link;
}
