<!--
window.onresize=DoResize;


function resizeNow(){
	DoResize();
	window.onresize=DoResize;
}

function DoResize(){

	if (document.getElementById){
		var obj = MM_findObj("scrollLayer")
			if(obj!=null){
					if(window.document.body.clientHeight-200 >= 5){
						obj.style.height = window.document.body.clientHeight-200;
					}else{
						obj.style.height = 6;
					}
			}	
	}	
	
		
 }
			


//-->