function activateObject(tagName) 
{ 
	var theObjects = document.getElementsByTagName(tagName);
	for (var i = 0; i < theObjects.length; i++) 
	{ 
		// quick time video
		if (theObjects[i].codeBase != "" && theObjects[i].codeBase == "http://www.apple.com/qtactivex/qtplugin.cab")
			continue;
		
		// silverlight
		if ( theObjects[i].attributes["type"].nodeValue == "application/x-silverlight" )
			continue;
		
		// the other objects
		theObjects[i].outerHTML = theObjects[i].outerHTML; 
	}
} 

function clickToActivateWorkaround(str)
{
        document.write(str);
}
