/*
    This source code is a derivitive work from:
	 
	 http://activecontent.blogspot.com/
*/

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);
  }
}