function OpenRemote(myURL)
{
 var name;
 var url;
 url = myURL;
 name = window.open(url, "LINK", "resizable=yes,toolbar=yes,location=0,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=0,width=600,height=550");
 name.location = url;
 name.focus();
}

var Fenster = null;
function neuesFenster(meineSeite,meinName,w,h,scroll)
{
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
Fenster = window.open(meineSeite,meinName,settings);
Fenster.focus();
}

