/*
 * Adust IFrame Height
 *
 */
function adjustIFrameHeight(options) {
	var iframe_id = options['iframe_id'] || null;
	if (parent && (parent != self) && iframe_id && parent.document.getElementById(iframe_id)) {
		if (document.all) {
			parent.document.getElementById(iframe_id).style.height = (document.body.scrollHeight + 20) + 'px';
		} else {
			parent.document.getElementById(iframe_id).style.height = (document.body.offsetHeight + 40) + 'px';
		}
	}
}

window.onload = function() {
	adjustIFrameHeight({iframe_id: 'topics_iframe'});
}