// Script to enable single click actions for ActiveX controls
if (window.ActiveXObject) {
// Test for ActiveX aware browser (such as MSIE), and if so rewrite comment-tagged text as HTML
	var elem = document.getElementById("to_be_rewritten");
	document.write(elem.innerHTML);
}

