
function OpenWin(url,fenster)
{
   var InfoWin=window.open(url,fenster,"scrollbars=yes,width=850,height=575,resizable=yes");
}


function TwoFrames(url1,n1,url2,n2)
{
   parent.frames[n1].location.href=url1;
   parent.frames[n2].location.href=url2;
}

