/* 
	This removes the "Click to activate and use this control" message that comes up in IE

	Below your last <object> insert the following JavaScript line which calls iefix.js:
	<script type="text/javascript" src="support_scripts_iefix.js"></script>
*/

objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
    objects[i].outerHTML = objects[i].outerHTML;
}