// whenever a flash object is embedded, it is disabled,
// and the user has to click on the flash just to activate it
// this script solves this issue

function activateFlash() {
	objects = document.getElementsByTagName("object");
	for (var i = 0; i < objects.length; i++)
	{
	    objects[i].outerHTML = objects[i].outerHTML;
	}	
}
