/*
Based on NoIEActivate v0.1 from eDIY software.
---- NoIEActivate v0.1 ----
Thanks to eDIY Software (http://www.ediy.co.nz) for coming up with this small piece of code.
http://www.ediy.co.nz/internet-explorer-flash-applet-activation-fix-xidc19237.html
*/

function ActivateNamedControls(tsControlName) {
	n=navigator.userAgent;
	w=n.indexOf("MSIE");
	if((w>0)&&(parseInt(n.charAt(w+5))>5)) {
		E=document.getElementsByName(tsControlName);
		for(i=0;i<E.length;i++) {
			P=E[i].parentNode;
			H=P.innerHTML;
			P.removeChild(E[i]);
			P.innerHTML=H;
		}
	}
}
ActivateNamedControls('HegnarOnlineFlashAd');