// helps to reduce content flicker
if (document.getElementById) {
  if ( swfobject.hasFlashPlayerVersion("8.0.0") )
  {
      // hide content, no ugly flickers
      swfobject.createCSS("#content", "display:none;"); // text disappears in ie with visibility!!
  }
}

function removeSWF()
{
  // remove the flash
  var node = document.getElementById("screen");
  node.parentNode.removeChild(node);
}

// gets called from flash
function showText()
{
  // make text visible and thumbs visible
  swfobject.createCSS("#content", "display:block;");
}

