//Fenstersteuerung - schlenker.06.01


function openwin(url,fenster)
{
   y=document.URL;
   neuwin=window.open(url,"fenster","width=700,height=500,scrollbars");
   neuwin.moveTo(20,20);
   neuwin.focus();

}

// Ausgangsfunktion mit Groessenuebergabe
/* function openwindow (url,x,y){
        text="width="+x+",height="+y+",scrollbars";
        neuwin=window.open(url,"bild",text);
        neuwin.moveTo(20,20);
        neuwin.focus();
        }
*/