function close(id){
      document.getElementById(id).style.left=-1000;
}

function hidediv() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('stickyads').style.visibility = 'hidden'; 
document.getElementById('background').style.visibility = 'hidden';
document.getElementById('inhalt').style.visibility = 'hidden';
document.getElementById('copyright').style.visibility = 'hidden';
} 
} 

function showdiv() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('stickyads').style.visibility = 'visible'; 
} 
}

function closestickydiv() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('stickyads').style.display = 'none'; 
} 
} 
