This works great in IE7 with no frames:
function hideScrollBar(){
document.body.style.overflow='hidden'
}
function showScrollBar(){
document.body.style.overflow='';0
}
As long as I do not want to use frames. As soon as I use frames though I get spacing for the scroll in IE7 (not netscape or mozilla). Any thoughts on how to get rid of that vertical scrollbar space?
Thanks,
John Glynn