function resize(){
	var parentFm = window.parent.parent.document.getElementById("mainFrame");
	if(parentFm != null)
		parentFm.height = document.getElementById("dvNewsContent").offsetHeight + 20 + "px";
}

function refreshHeader(str1, str2, main_href){
	var hd1 = window.parent.parent.document.getElementById("spHeader1");
	var hd2 = window.parent.parent.document.getElementById("spHeader2");
	var header = window.parent.parent.document.getElementById("breadcrumbs");
	
	if(header == null)
		return;
	if(header.style.display == "none")
	{
		header.style.display = "";
	}
	
	hd1.innerHTML = str1;
	hd2.innerHTML = str2;
	self.location.href = main_href;
}

window.onload = resize;