function resize() {
		var iframe = document.getElementById("pageholder");
if(iframe.document && iframe.document.body.scrollHeight){
	iframe.height=document.frames("pageholder").document.body.scrollHeight;
	}
else{
	iframe.height=iframe.contentDocument.body.offsetHeight;
	}
		}

