function setFlSize(){
	//height
	if ( document.all && document.body.clientHeight > 630){	//IE6
			document.all.container.style.height = document.body.clientHeight-45;
	}else if ( document.layers && window.innerHeight > 620){//NN
			document.all.container.style.height = window.innerHeight-45;
	}else if(document.getElementById && window.innerHeight > 620){//FF
			document.getElementById( 'container' ).style.height = window.innerHeight-45;		
	}
}