(function(){
 if (window.opera) {
  var applet = document.getElementById('app').innerHTML;
  document.getElementById('app').innerHTML = '';
 }
 else
  var applet = document.getElementById('app').removeChild(document.getElementById('theapp'));
 var doApplet = function(){
  if (window.opera)
    setTimeout(function(){document.getElementById('app').innerHTML = applet;}, 0);
  else
    setTimeout(function(){document.getElementById('app').appendChild(applet);}, 0);
 };
 if (window.addEventListener)
  window.addEventListener('load', doApplet, false);
 else if (window.attachEvent)
  window.attachEvent('onload', doApplet);
})();
