function resizeFrame(newWidth)
{
    if (document.all) //IE
    {
        document.styleSheets[0].rules[1].style.width = newWidth + 'px';
    }
    else //Others
    {
        document.styleSheets[0].cssRules[1].style.width = newWidth + 'px';
    }
}