var counter =0;
var counter2=0;
function machauf(url) 
{
  counter++ ;
  if(url.indexOf("?")==-1) url=url+"?";
  url += "&"+sessionname+"=" + phpsessid;
  window.open(basehref+url,"Detail"+counter, "width=535,height=500,scrollbars=yes,resizable=yes");
}

function machauf2(url) 
{
   counter2++ ;
   window.open(url,"Detail2"+counter2, "width=150,height=101,scrollbars=yes,resizable=yes,status=yes"); // Carl Hack: Status eingschaltet
}

fsstat = 0;
function news_popup(url) 
{
  fs = window.open(url, "Eigenschaft", "width=600,height=400,scrollbars=yes,resizable=yes");
  fsstat = 1;
  setTimeout('fs.focus()',750);
}

function news_close()
{
  if (fsstat==1) {
    if (fs.closed==false)
    {
       fs.document.forms[0].submit();
       fs.close();
    }
  }
}