function Go(selection) {		//automatischer Seitenaufruf bei Menüauswahl
	var php=selection.options[selection.selectedIndex].value;
	if (php.length>1) {
		window.location=php;
	}
}

function onw(url, name, width, height) {
  w = open(url,name, "width=" + width + ",height=" + height);
  w.focus();
}

