/*
-----------------------------------------------
Damoah Arts Blog javascript
-----------------------------------------------
*/

function resizeBlogFrame() {
	var height = 0;
	var blogFrame = document.getElementById("blogFrame");
	var blogFrameDoc = blogFrame.contentWindow.document;

	// find the height of the internal page
	height = Math.min(blogFrameDoc.body.offsetHeight, blogFrameDoc.body.scrollHeight);

	// and set the iframe to the same height with a bit of padding
	blogFrame.setAttribute("height", height /*+ 40*/);
}
