function calcHeight(elem)
{
   	var the_height=500;
	var padding=80;
	try
	{
		if( elem.contentWindow && elem.contentWindow.document)
		{
			the_height=elem.contentWindow.document.body.scrollHeight;
		}
	}
	catch(e){}
	elem.height=the_height +padding;
}
