var fenster="";
var arguments="";
function winopen(inh,WinName,W,H,S)
  {
  W=W+20;
  if(navigator.appName=="Netscape")
    {
    H=H+40;
    }
  else
    {
    H=H+20;
    };

  if (WinName == 'Edit_Artikel')
    {
    fenster=window.open('http://www.ktlv.at/editor/editor.php?oid='+inh,WinName,'scrollbars='+S+',toolbar=0,location=0,menubar=0,wibar=0,width='+W+',height='+H+'');
    }
  else
    {
    inh='http://www.ktlv.at/'+inh;
    arguments='scrollbars='+S+',toolbar=0,location=0,menubar=0,wibar=0,width='+W+',height='+H;
    fenster=window.open(inh,'KTLV',arguments);
    };
  };

