onload=function()
{

// new height
var newh = 100;
// add value
var addh = 0;

// get the values
try {
	switch (navigator.appName)
		{
		case 'Opera':
			newh=document.body.scrollHeight;
			addh=newh*40/7600;
			break;
		case 'Konqueror':
			newh=document.body.scrollHeight;
			addh=newh*40/7600;
			break;
		default:
			newh=Math.max(document.body.offsetHeight,document.body.scrollHeight);
			addh=/*Math.abs(document.body.offsetHeight-document.body.scrollHeight)+*/newh*40/7600;
		}
	}
catch(e){ }

// apply
top.window.document.getElementById('iframe_content').style.height=newh+addh+'px';

}
