root = "";

function popup_maxnet(loc)
{ 
  f = window.open(loc,"popup_maxnet","width=1024,height=700,locationbar=no,menubar=no,resizable=1,scrollbars=yes,status=no,screenX=50,screenY=50,top=50,left=50");
  f.focus ();
}

function vhvpopup_1024(loc)
{ 
  window.name = "vhvmain";
  f = window.open(loc,"vhvpopup_1024","width=1024,height=768,locationbar=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,screenX=50,screenY=50,top=50,left=50");
  f.focus ();
}

function vhvpopup(loc)
{ 
  window.name = "vhvmain";
  f = window.open(loc,"vhvpopup","width=780,height=640,locationbar=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,screenX=50,screenY=50,top=50,left=50");
  f.focus ();
}

function vhvpopupk(loc)
{ 
  f = window.open(loc,"vhvpopupk","width=480,height=300,locationbar=no,menubar=no,resizable=no,scrollbars=yes,status=yes,screenX=50,screenY=50,top=50,left=50");
  f.focus ();
}

function vhvpopup2(loc)
{ 
  f = window.open(loc,"vhvpopup2","width=780,height=560,locationbar=no,menubar=no,resizable=no,scrollbars=yes,status=yes,screenX=50,screenY=50,top=50,left=50");
  f.focus ();
}

function vhvpopuplink(loc)
{ 
  f = window.open (loc, "vhvmain");
  f.focus ();
//  opener.location.href = loc;
//  opener.focus ();
  self.close ();
}

//--------------------------------------------------------------------
//  #, do nothing
//  1;url, Standardseite
//  2;url, Popupseite
//--------------------------------------------------------------------
function selectGo(x) 
{
  if (x.charAt(0) == '#') 
    return;
  else 
  {
    var url = x.substr(2, x.length - 2);
    
    if (x.charAt(0) == '1')
      window.location.href = url;
    else if (x.charAt(0) == '2')
      vhvpopup(url);
    else if (x.charAt(0) == '3')
      vhvpopup_1024(url);
  }
} // selectGo

