//disables the "click here to activate" for ie users.
//removes the attributes from the website and adds them again after the page load
function replaceFlash(){
    n=navigator.userAgent;
    w=n.indexOf("MSIE");

    if((w>0)&&(parseInt(n.charAt(w+5))>5)){
        T=["object","embed","applet"];
        for(j=0;j<2;j++){
            E=document.getElementsByTagName(T[j]);
            for(i=0;i<E.length;i++){
                P=E[i].parentNode;
                H=P.innerHTML;
                if(E[i].id.substr(0,7) != "exclude"){
                    //alert(E[i].id);
                    P.removeChild(E[i]);
                    P.innerHTML=H;
                }
            }
        }
    }
}

