// ================= Oeffnet neues Fenster: ===========
function OpenRemoteWindow(url,target,breite,hoehe) {
features='toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + breite +',height=' + hoehe +',screenX=50,screenY=50';
win=window.open(url,target,features);
}
