// JavaScript Document
function forward()
{
	var href;
	href = document.auswahl.soauswahl.options[document.auswahl.soauswahl.selectedIndex].value;
	if (href != 'none') {
		window.location.href = href;	
	}
}//end forward

function openNewFile (filename, headline, wwidth, wheigth) {
	//alert (""+filename);
	
	newWindow = window.open(filename, headline, "height="+wheigth+", width="+wwidth+", scrollbars=no, menubar=no, toolbar=no, resizable=no" );
	
}
