<!--
function EmailPage()
{
	window.location = "mailto:?subject=CDC Web Referral&amp;body=" + window.location;
}
function newWindow(url, width, height, usescrollbars, useresize)
{
	var appWindow;
	appWindow = window.open('', 'win', 'width=' + width + ',height=' + height +',resizable=' + useresize + ',toolbar=no,location=no,menubar=no,scrollbars=' + usescrollbars);
	appWindow.location = url;
	appWindow.focus();
}
//-->
