function PopUpWdw(Seite, x, y, b, h, sc) {
    if (document.all) {
       x1 = (screen.width-b)/2
       y1 = (screen.height-h)/2
    } else {
       y1 = y+window.screenY;
       x1 = x+window.screenX;
    }

   flyout=window.open(Seite,"flyout_1","resizable=no,scrollbars="+sc+",width="+b+",height="+h+",top="+y1+",left="+x1);
   document.target="flyout_1";
   flyout.focus();
   return(flyout);
}

function Open(Seite, msg) {
	if (Seite != "") {
		Seite = "info/" + Seite;
		PopUpWdw(Seite,10,10,600,(msg > 0)?msg:400,'yes');
	} else {
		alert(msg);
	}
}

function Open2(Seite) {
	if (Seite != "") {
		Seite = "info/" + Seite;
		PopUpWdw(Seite,10,10,660,550,'no');
	} else {
		alert("derzeit nicht vorhanden ...");
	}
}
