checkParent = function() {
	childHeight = window.frames['iframe'].document.getElementById("wrap").offsetHeight;
	parentHeight = document.getElementById("subbody").style.height = (childHeight + 10 + "px");
	iframeHeight = document.getElementById("iframe").style.height = ((childHeight + 10) + "px");
}
changeHeight = function() {
	var cHeight = document.getElementById("iframe").offsetHeight;
	sBody = (cHeight + 10)
	document.getElementById("subbody").style.height = (sBody + "px");
	document.getElementById("content").style.height = (cHeight + "px");
	document.getElementById("footer").style.top = (sBody + 175 + "px");
	document.getElementById("googlead").style.top = (sBody + 250 + "px");
