// JavaScript Document


function newwindow() {
TheNewWin = window.open("http://www.nationalahec.org/poll.taf?survey_idn=1",'TheNewpop','toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1');
TheNewWin.blur()[0].focus();
}

var poptext = "";

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;
	
}

function hideDiv() {
	document.getElementById("theLink").style.display="none";
	
}

function setTheDivStyle() {
if(!readCookie('setCookie')) {
document.getElementById("theLink").style.display="block";


}
else {
document.getElementById("theLink").style.display="none";

}

}

