//###### Kleines Fenster auf #########
function fensterauf1(URL)
   {
   NF=window.open(URL,"info","width=350,height=280, screenX=0, sreenY=0, directories=no, resizable=false,scrollbars=0, menubar=false");
   NF.focus; 
   }

//###### Großes Fenster auf #########
function fensterauf2(URL)
   {
   NF=window.open(URL,"info","width=780, height=580, screenX=0, sreenY=0, directories=no, resizable=false, scrollbars=1, menubar=false");
   NF.focus; 
   }
   
//###### Mittleres Fenster mit Scolling auf #########
function fensterauf3(URL)
   {
   NF=window.open(URL,"info","width=450, height=450, screenX=0, sreenY=0, directories=no, resizable=false, scrollbars=1, menubar=false");
   NF.focus; 
   }

//###### Fenster auf #########
function fensterauf4(URL)
   {
   NF=window.open(URL,"info","width=350,height=400, directories=no, resizable=false,scrollbars=0, menubar=false");
   NF.focus; 
   }
   

