/*
    This source code is a derivative work this article:
	 
	 http://activecontent.blogspot.com/2006/04/using-comments-solution.html
*/

var bo_ns_id = 0;

function startIeFlashFix(){
  //If IE
  if(window.ActiveXObject)
  {
    document.write('<div id="bo_ns_id_' + bo_ns_id + '"><!-- ');
  }
}

function endIeFlashFix(){
  //If IE
  if(window.ActiveXObject)
  {
    document.write('</div>');
    var theObject = document.getElementById("bo_ns_id_" + bo_ns_id++);
    var theCode = theObject.innerHTML;
    theCode = theCode.substring(4 ,9+theCode.indexOf("</object>"))
    document.write(theCode);
  }
}
