function checkdownloadcookie(thecookie)
{
// Add an on click event to all external links
// Open the survey modal window and pass in the external url they are trying to go to.

var RegYes = readCookie(thecookie);
//document.write("surveyYes: " + surveyYes + " - surveyRefused: " + surveyRefused);
	if (RegYes != 1 )
	{
		Modalbox.show('Downloadable Resources', '/idsafety/downloadable_resources/index.cfm'); 
		return false;
	}
	else
	{
		window.location="/downloadable_resources/index.cfm?fa=submitform";
	}
}

function readCookie(name) 
{
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) 
	{
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}