function updateGrowthRate(growthRate) {
	var div = document.getElementById("dynamic-ror");
	if (div !== null) {
		div.replaceChild(document.createTextNode(growthRate),div.firstChild);	
	}
} 

function loadUrl(url) {
  top.location = url;
}
