function NeuFenster(URL,Text,x,y)
{
 var parameter= "width=" + x + ",height=" + y + ",resizable=yes" + ",scrollbars=yes";
 Fenster = window.open(URL, Text, parameter);
 Fenster.moveTo(screen.width-20-x,10);
 Fenster.focus();
}

