function activateObject(tagName) 
{ 
	var theObjects = document.getElementsByTagName(tagName);
	for (var i = 0; i < theObjects.length; i++) 
	{ 
		if (theObjects[i].codeBase != "" && theObjects[i].codeBase == "http://www.apple.com/qtactivex/qtplugin.cab")
		{
		}
		else
		{
			theObjects[i].outerHTML = theObjects[i].outerHTML; 
		}
	}
} 

function clickToActivateWorkaround(str)
{
        document.write(str);
}
