 function getPageSizeWithScroll(){
    	if (window.innerHeight && window.scrollMaxY) {// Firefox
    		yWithScroll = window.innerHeight + window.scrollMaxY;
    		xWithScroll = window.innerWidth + window.scrollMaxX;
    	} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
    		yWithScroll = document.body.scrollHeight;
    		xWithScroll = document.body.scrollWidth;
    	} else { // works in Explorer 6 Strict, Mozilla (not FF) and Safari
    		yWithScroll = document.body.offsetHeight;
    		xWithScroll = document.body.offsetWidth;
      	}
    	arrayPageSizeWithScroll = new Array(xWithScroll, yWithScroll);
    	//alert(arrayPageSizeWithScroll[1]);
      return arrayPageSizeWithScroll  
    	//alert( 'The height is ' + yWithScroll + ' and the width is ' + xWithScroll );
    	//return yWithScroll;
    }
    
function size_table_size() {
  th = getPageSizeWithScroll();  
  /*alert(th[0]);*/
  document.getElementById('close2').style.height = th[1]+"px"; 
  document.getElementById('close2').style.width = th[0]+"px";  
}
    
