// This is for that silly IE 5 especially on OS 9
//  this seems to convince the scroll bar to show up
    
    function forceResize() {
      window.resizeBy(-1,-1);
      window.resizeBy(+1,+1);
    }
    
// Just openes a new window
    function openWindow( url , w , h , wname ) {
      window.open( url , wname , 'width='+w+',height='+h);
    }
      
