window.defaultStatus = "ServerHowTo.de" ; 
if (window != window.top){
  top.location.href = location.href;
}

function show_hide(id)
{
  if(document.getElementById(id).style.display == 'none')
{
  document.getElementById(id).style.display = '';
  document.getElementById(id).style.visibility = 'visible';
}
else
{
  document.getElementById(id).style.display = 'none';
  document.getElementById(id).style.visibility = 'hidden';
}
}




