var timeout;

document.domain = "primamedica.ru";

function clickAction() {
	frameFitting();
	var fr = document.getElementById('forum_frame').contentWindow.document.body.getElementsByTagName('a');
	for (var i=0; i<fr.length; i++) {
		fr[i].onclick = function() {
			clearInterval(timeout);
			timeout = setInterval("frameFitting()",100);
		}
	}
}

function frameFitting() {
	document.getElementById('forum_frame').width = '100%';
	document.getElementById('forum_frame').height = document.getElementById('forum_frame').contentWindow.document.body.scrollHeight+20+'px';
}