// JavaScript Document

function setFrameHeight(obj) {
	if (obj.contentDocument && obj.contentDocument.body.offsetHeight) {
		obj.height = obj.contentDocument.body.offsetHeight + "px";
	} else if (obj.Document && obj.Document.body.scrollHeight) {
		obj.height = obj.Document.body.scrollHeight + "px";
	}
}