/*
	The following function fixes an extra click required by IE with a particular "Security" Fix.
	Refer to this MS KB article:
	http://support.microsoft.com/kb/912945
*/
var  theObjects = document.getElementsByTagName("object");
if(theObjects)
{
	for (var i = 0; i < theObjects.length; i++)
	{
		if(theObjects[i])
			theObjects[i].outerHTML = theObjects[i].outerHTML;
	}
}