function printThis(id) {
	var askYourself = '<div align="center" style="border:2px solid #1A8033;color:#333;background-color:#95D05F;padding:8px;font-size:27px;margin:0 0 8px 0;" id="page-content-print"><img src="/cms3/skeleton_32/files/img/need-to-print.png" />Ask yourself, is it necessary to print this page?<br /><div><a href="/sustainability/index.cfm?action=home.pledge" style="font-size:16px;">Take the sustainability pledge to reduce your footprint and save <em>our</em> future</a></div></div>';
	var newContent = askYourself + document.getElementById(id).innerHTML;
	document.body.innerHTML = '';
	document.body.style.background = '#FFFFFF';
	document.body.style.color = '#000000';
	document.body.innerHTML = newContent;
	return false;
}
