<!--
if (document.all){
    window.onload = function(){
     if (document.getElementsByTagName) {
      var objs = document.getElementsByTagName("object");
      for (i=0; i<objs.length; i++) {
         objs.outerHTML = objs.outerHTML;
      }
   }
   }
    window.onunload = function() {
      if (document.getElementsByTagName) {
        //Get all the tags of type object in the page.
        var objs = document.getElementsByTagName("object");
        for (i=0; i<objs.length; i++) {
          // Clear out the HTML content of each object tag
          // to prevent an IE memory leak issue.
        objs.outerHTML = "";
        }
    }
    }
}
// -->