<!--
/* Simon Willison's addLoadEvent -- replaces the normal 'window.load = ...' allowing
you to stack multiple events on the page load event -- you can only have one event on 
'window.onload' - details @ http://www.sitepoint.com/blog-post-view.php?id=171578 */
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

function destroynetzwerk() /* netzwerk closer function */
{
	var netzwerk = document.getElementById('netzwerk');
	document.body.removeChild(netzwerk); /* clip netzwerk off the tree */
	document.getElementsByTagName('html')[0].style.padding= '0'; /* reset the padding at the bottom */
	return false; /* disable the link's 'linkiness' -- so it won't jump you up the top of the page */
}
function closelink() /* attach the netzwerk closer function to the link */
{
	var closelink = document.getElementById('closeme'); /* find the 'close this' link */
	closelink.onclick = destroynetzwerk; /* attach the destroy function to it's 'onclick' */
}
addLoadEvent(function() { 
	closelink();
});
-->