function adjustImmoFrame(){
	frm = document.getElementById('ImmoFrame');
	con = document.getElementById('content');
	foo = document.getElementById('footer');
	
	if (con && foo) {
		newHeight = con.offsetHeight - foo.offsetHeight - 40;
	}
	
	//el.style.height = newHeight+"px";
	if (frm) {
		frm.height = newHeight+"px";
	}
	//alert(frm.height);
}
