function animation(seite,fenstername)
 {
   breite=300;
   hoehe=350;   
   oben=screen.height-screen.availHeight ;
   links=screen.availWidth-breite-30 ;
   optionen="Width="+breite+",Height="+hoehe+",Left="+links+",top="+oben+",resizable=no";
   
   win=window.open(seite,"fenstername",optionen);
   win.focus();
 }
