// JavaScript Document
function resize_iframe(){
	var frm = document.getElementById("glu");
	frm.style.height = frm.contentWindow.document.body.scrollHeight + 10 + "px";
}
	
// this will resize the iframe every
// time you change the size of the window.
window.onresize=resize_iframe; 

//Instead of using this you can use: 
//	<BODY onresize="resize_iframe()">

//-->
