linkClicked = false;

if (readCookie('shownSurvey') == null) {
	createCookie('shownSurvey', 'false', 365);
};

$(document).ready(function(){
	
	theSurvey();
	
});


function theSurvey(){
	
	$('#dialog').dialog({
		autoOpen: false, width: 499, height: 399, modal: true
	});	
	
	if(readCookie('shownSurvey') == 'false') {
		$('#dialog').dialog('open');
	}	
	
	$('a#close').click(function(){
		createCookie('shownSurvey', 'true', 365);
		$('#dialog').dialog('close');
		return false;
	});
	
	$('a#survey').click(function(){
		createCookie('shownSurvey', 'true', 365);
		$('#dialog').dialog('close');
		SurveyWindow = window.open('http://clients.enablermail.com/pancentric/clickthru.cfm?id=1733&override=1', 'exitsurvey', "menubar=0,toolbar=0,location=0,width=850,height=950,scrollbars=1");
		SurveyWindow.focus();		
		return false;
	});
	
	$('a#remindme').click(function(){
		createCookie('shownSurvey', 'true', 365);
		$('#dialog').dialog('close');
		SurveyWindow = window.open('http://clients.enablermail.com/pancentric/clickthru.cfm?id=1733&override=1', 'exitsurvey', "menubar=0,toolbar=0,location=1,width=850,height=950,scrollbars=1");
		SurveyWindow.blur();	
		return false;
	});
		
}

/*
 * Cookie helper functions
 */

function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

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 eraseCookie(name) {
	createCookie(name,"",-1);
}
