/* Demo */
function ShowHideSperre(ID, sound) {
  id=ID;
  obj = (document.getElementById ? document.getElementById(id) : (document.all ? document.all[id] : (document.layers ? document.layers[id] : null)));   obj.style.visibility = (obj.style.visibility == 'visible' ? 'hidden' : 'visible');
  location = "#start";

  var sndObj = '<embed type="application/x-shockwave-flash" hidden=true width=0 height=0 src="atommuell/splayer.swf" flashvars="src=atommuell/nuklear.mp3&autostart=yes"></embed>';
  if (obj.style.visibility == 'visible') document.getElementById("player").innerHTML=sndObj;
}; 
function HideSperre(ID) {
  ShowHideSperre(ID);
  document.cookie='OnlineStopGesehen=1;path=/';
};

if(document.cookie.indexOf('OnlineStopGesehen=1')==-1){ShowHideSperre(ID, sound)};

