_activateActiveXControls();
function _activateActiveXControls(){
	// Activate all existing controls
	o=_d.getElementsByTagName('object');
	for(var i=0;i<o.length;i++){
	    if(!o[i].donotactivate)
		o[i].outerHTML=o[i].outerHTML;
	}
	// Activate all special controls within div place holders
	// At present this is used only in IE for Windows because
	// the above solution with outerHTML sometimes "corrupts"
	// the flash in IE Windows when it is loaded twice
	if(_activeXControlsForActivation){
		for(var i=0;i<_activeXControlsForActivation.length;i++){
			o=_d.getElementById(_activeXControlsForActivation[i][0]);
			o.innerHTML=_activeXControlsForActivation[i][1];
		}
	}
}