function calcHeight() 
{ 
	//find the height of the internal page 
	var the_height= document.getElementById('blogframe').contentWindow. document.body.scrollHeight; 
	//change the height of the iframe if height is greater than 800
	if (the_height > 800) {
		document.getElementById('blogframe').height= the_height; 
	}
} 