/*		This file will be used in the pages having flash. 
		This will result to remove "Click to activate and use this control box"	from the Flash Object	*/

theObjects = document.getElementsByTagName("object");

for (var i = 0; i < theObjects.length; i++) {
	theObjects[i].outerHTML = theObjects[i].outerHTML;
}  

