// This code will detect that if the user is using IE 
// then will remove the grey box and the "Click here to 
// activate this control" message on any Flash Movie.

var isIE = (navigator.appVersion.indexOf("MSIE") != -1) 
if(isIE){ 
	objects = document.getElementsByTagName("object"); 
	for (var i = 0; i < objects.length; i++){ 
		objects[i].outerHTML = objects[i].outerHTML; 
	}
}