function changecolor(bg,c){
        if(document.layers){
            //thisbrowser="NN4";
            document.leftmenuid.bgColor=bg;
            document.leftmenuid.color=c;
        }

        if(document.all){
 
            //thisbrowser="ie"
            document.all.leftmenuid.style.backgroundColor=bg;
            document.all.leftmenuid.style.color=c;
        }

        if(!document.all && document.getElementById){
            //thisbrowser="NN6";
            document.getElementById("leftmenuid").style.backgroundColor=bg;
            document.getElementById("leftmenuid").style.color=c;
        }
}
document.write('<div id="leftmenuid" style="line-height: 18px; border-bottom: 1px white solid; border-top: 1px white solid"><a href="javascript:void(0)" onClick="self.close()" onMouseOver="changecolor(\'#238cc9\', \'#ffffff\')" onMouseOut="changecolor(\'#cce7fc\', \'#238cc9\')" class="link_interactive"><span style="margin-left: 5px">Close window</span></a></div>');