<!--

//Öffnet ein neues Fenster
function PopUp(url, w, h, s) {
	var options = "width=" + w + ",height=" + h + ",";
	var scroll = ((s && s===true)?"yes":"no")

	options += "resizable=yes,scrollbars=" + scroll + ",status=no,";
	options += "menubar=yes,toolbar=no,location=no,directories=no";

	var newWindow = '_newWin';
	var newWin = window.open(url, newWindow, options);
	//newWin.focus();
}

//-->
