// resize iframe to height of it's content
function resize_iframe(obj)
{
	docHeight = obj.document.body.scrollHeight;
	obj.style.height = docHeight + 'px';
}
