
function isLeaving(DestinationURL, Language) 
{
	var allowedWebsites = /cdc\.gov|findtbresources\.org/;
	var VisitSite;
	if (allowedWebsites.test(DestinationURL) == false) 
		{
		VisitSite = confirm("Notice\n\nYou are now leaving the Find TB Resources Website. An external site will open in a new browser window. CDC and the Find TB Resources Website do not assume responsibility for the information obtained from external sites. The Find TB Resources Website will remain open in the original browser window.");
		if (VisitSite == true)
				{
					window.open(DestinationURL);
				}
				return false;
		}
	else return true;
}


function leaving()
{
	var VisitSite;
	VisitSite = confirm("Notice\n\nYou are now leaving the Find TB Resources Website. An external site will open in a new browser window. CDC and the Find TB Resources Website do not assume responsibility for the information obtained from external sites. The Find TB Resources Website will remain open in the original browser window.");

				return VisitSite;

}
