function NeuesFenster (Adresse, Titel, x, y) 
{
  Fenster1 = window.open(Adresse, Titel, "width=" + x + ",height=" + y + ",scrollbars=yes");
  Fenster1.focus();
}


function View (Adresse, Titel, x, y) 
{
  Fenster1 = window.open(Adresse, Titel, "width=" + x + ",height=" + y + ",scrollbars=no");
  Fenster1.focus();
}
