<!--

function ansicht(datei) 
{
fenster = window.open(datei,"ansicht","width=508,height=426,left=0,top=0,resizable=no,scrollbars=no");
}

function sprachen(datei) 
{
fenster = window.open(datei,"ansicht","width=508,height=426,left=0,top=0,resizable=no,scrollbars=yes");
}


var remotewin;

function openwin(url,w,h,sx,sy,lbar,tbar,mbar,rez,scr,stat)
{
  var params="";
  params+="width="+w+",height="+h;
  if (sx + "xxx" != "xxx") params+=",left="+sx;
  if (sy + "xxx" != "xxx") params+=",top="+sy;
  if (lbar + "xxx" != "xxx") params += ",location=" + lbar;
  if (tbar + "xxx" != "xxx") params += ",toolbar=" + tbar;
  if (mbar + "xxx" != "xxx") params += ",menubar=" + mbar;
  if (rez + "xxx" != "xxx")  params += ",resizable=" + rez;
  if (scr + "xxx" != "xxx")  params += ",scrollbars=" + scr;
  if (stat + "xxx" != "xxx") params += ",status=" + stat;
  remotewin = window.open("","popup",params);
  if (url + "xxx" != "xxx") remotewin.location.href = url;
  if (remotewin.opener == null) remotewin.opener = window;
  remotewin.focus();
}

function go2link(url) { opener.location.href=url; }
function go2link_close(url) { opener.location.href=url; self.close(); }


//-->
