
function stub()
	{
     document.getElementById("tertiaryContent").style.height = document.getElementById("secondaryContent").offsetHeight + "px";
	//alert(document.getElementById("w1").offsetHeight);
	}
	if (window.addEventListener){
		window.addEventListener("load", stub, false);
	}else if (window.attachEvent){
		window.attachEvent("onload", stub);
	}
