function openWin(file,name,width,height,posX,posY)
{
   var myWin = 
      window.open(file, name, "width="+width+",height="+height+",resizable=yes,dependent=yes,scrollbars=no");
   myWin.moveTo(posX,posY);
   myWin.focus();
}

function FormWin(file)
{
   var myWin = 
      window.open(file, "stex", "width=444,height=660,resizable=yes,dependent=yes,scrollbars=no");
   myWin.focus();
}

function Inhalt() // wird wohl nicht mehr gebraucht
{
   openWin('menu.html','Inhalt',360,700,screen.width-375,screen.height-760);
}

function OpenDisclaimer() // wird wohl nicht mehr gebraucht
{
   openWin('disclaimer.html','Disclaimer',550,550,0,0);
}
