function frameFitting() {
    var rppframe = document.getElementById('rppchannelframe');
	rppframe.width = '100%';
	if (rppframe.contentWindow) {
		if (rppframe.contentWindow.document) {
			if (rppframe.contentWindow.document.body) {
				if (rppframe.contentWindow.document.body.scrollHeight) {
					rppframe.height = rppframe.contentWindow.document.body.scrollHeight + 'px';
				}
			}
		}
	}
	setTimeout("frameFitting()", 500);
}

frameFitting();

