// (c) 2001, Markus Kuehni, TRILAB Software AG, Switzerland
// default.js

function loadComplete()
{ if (document['getElementById'] == null)
  { // non-DOM-Browser
    return;
  }
  var jsrefs = document.getElementsByName('js_only');
  for (var i = jsrefs.length-1; i >= 0; i--)
  { jsrefs[i].style.visibility = 'visible';
  }
}


function onPopupClose()
{ if (document['getElementById'] == null)
  { // non-DOM-Browser
    return;
  }
  var popup = document.getElementById('popup');
  if (popup != null)
  { popup.style.display = 'none';
  }
}

