<!--
// WinOpen-Funktion
function winOpen(theURL,winName,features) { 
var win;
win = window.open(theURL,winName,features);
win.focus();
}
-->