function verifyUpdate(action,url) {
	if (confirm("Are you sure you want to " + action + "?")) {
		document.location = url;
	}
}

function loadIframe(iframeName, url, hideblock) {
	if(hideblock == 'takeabreak' || hideblock == 'therapy'){
		document.getElementById('growthblock').style.display = 'none';
	}
	document.getElementById('blogframe').style.display = 'block';
	if ( window.frames[iframeName] ) { 
		window.frames[iframeName].location = url;
		return false;
	}
return true;
}
