function sizeMe(noRefresh) {
    // set up constants
    minWidth = 760;
    baseWidth = 580;


    if (document.documentElement.clientWidth){
    	myWidth = document.documentElement.clientWidth;
    } else if (document.body){
    	myWidth = document.body.clientWidth;
    }

    // prevent squeeze below min width
    if(myWidth<minWidth) {
        myWidth = minWidth;
    }

    thisAdjust = (myWidth - minWidth);
    newWidth = baseWidth+thisAdjust;

    // set holder
    myObj=document.getElementById('holder');
    if(myObj) myObj.style.width=myWidth+'px';

    // set col 2
    myObj=document.getElementById('col2');
    if(myObj) myObj.style.width=newWidth+'px';


    // ie6 on win2k playing up
    if(!noRefresh && navigator.userAgent=="Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)") {
        window.location.reload();
    }

    /*
    myObj = document.getElementById('debug');
    myObj.innerHTML = 'Client width= '+myWidth+'<br />col2 width= '+newWidth+'<br /> col1 width ='+(myWidth-newWidth);
    */


}
