
// handle CF AJAX errors

try {
	ColdFusion.setGlobalErrorHandler(handlebinderror);
}
catch(err) {

}

function handlebinderror(errmsg) {
	return false;
}

// END handle CF AJAX errors


// support Share This button used on news articles
function showhidesharethis() {
	if (document.getElementById('sharebox').style.display == 'block') {
		document.getElementById('sharebox').style.display = 'none';
	}
	else {
		document.getElementById('sharebox').style.display = 'block';
	}
}
function autohide() {
	document.getElementById('sharebox').style.display = 'none';
}
// END support Share This button used on news articles