<!--



function fnInit(){
   var ie7 = (document.all && !window.opera && window.XMLHttpRequest) ? true : false;

   if (ie7) {
   	bottom_right.style.setExpression("width", "document.body.clientWidth < 700 ? '700px' : '100%'");
   	bottom_right.style.setExpression("height", "document.body.clientHeight < 550 ? '550px' : '100%'");   	

   }
   else {
   	bottom_right.style.setExpression("width", "document.body.clientWidth < 700 ? '700px' : '100%'");
   	bottom_right.style.setExpression("height", "document.body.clientHeight < 550 ? '550px' : '100%'");  
   }
   
   document.recalc(true);
}

window.onload=fnInit;
-->