// Grafiken einlesen
//wenn nur die xxx.html geladen wird, soll index.html geladen werden

function frames(){
  if(parent.frames.length==0)
    {
     location.href = "index.htm";
    }
}
function ZweiFrames (URL1,F1,URL2,F2)
{
   parent.frames[F1].location.href=URL1;
   parent.frames[F2].location.href=URL2;
}

 function newwin()
   {
    nw = window.open("test.htm","neu","top=300,left=300,width=800,height=600");
   }


