function MSIEHack() {

		maxWidth = 890;
		elmPanel = document.getElementById("layout");

        if (elmPanel.offsetWidth > maxWidth) {
                document.getElementById("lm").style.width = 20 + (elmPanel.offsetWidth - maxWidth)/2;
                document.getElementById("rm").style.width = 20 + (elmPanel.offsetWidth - maxWidth)/2;
        } else {
                document.getElementById("lm").style.width = 20;
                document.getElementById("rm").style.width = 20;
		}
}


////////////////////////////////////////////////////////////////////////////////
//
//

isIE=document.all && document.getElementById && !window.innerHeight;

        window.onload = MSIEHack;
        window.onresize = MSIEHack;

