function openWindow(url, traits){
        newWindow=window.open(url,"displayWindow",traits); newwindow.focus();
        }


function Popup(url,breite,hoehe)
{
var url;
var width=breite;
var height=hoehe;
var l = (screen.availWidth - width - 36) / 2;
var t = (screen.availHeight - height + 22) / 2;
newwindow = window.open(url,"newwindow","width="+breite+",height="+hoehe+",screenX="+l+",screenY="+t+",left="+l+",top="+t+",scrollbars=NO,resizable=NO,menubar=NO");newwindow.focus();
}
