<!--
function intializeWidth()
{ 
    if(document.getElementById&&navigator.appVersion.indexOf("MSIE")>-1&&!window.opera)
    {
        if(window.attachEvent)
        {
            window.attachEvent("onresize",calcWidth);
            window.attachEvent("onload",calcWidth);
        }
        else
        {
            onload=calcWidth;
            onresize=calcWidth;
        }
    }
}
intializeWidth();
function calcWidth() {
    if (navigator.appName.indexOf("Microsoft")!=-1) 
        {
        var cnt = document.getElementById('container');
        
        if (document.body.offsetWidth < 930)
            {
            cnt.style.width = "920px";
            }
        else 
            {
            cnt.style.width = "100%";
            }
        }
}
//-->