var f;

function calcHeight(frame)
{
	f = frame;
	try {
		var the_height = 0;
		
		if(frame.contentDocument) {
			the_height = frame.contentDocument.documentElement.scrollHeight;
		} 
		
		else {
			the_height = frame.contentWindow.document.body.scrollHeight;
		}

		// change the height of the iframe
		frame.style.height = (the_height + 50) + "px";

		setTimeout( "calcHeight(f);", 1000 );
	}
	catch(err)
	{ }
}
