	function resizeIframe()
	{
		var height = document.documentElement.clientHeight - 35;
		height -= document.getElementById('contentarea').offsetTop;

		// not sure how to get this dynamically
		height -= 0; /* whatever you set your body bottom margin/padding to be */

		document.getElementById('contentarea').style.height = height +"px";

	}