
            function show(sw,obj) { 
            // show/hide divs 
            if (sw) document.all[obj].style.display = 'block'; 
            if (!sw) document.all[obj].style.display = 'none'; 
            } 
