window.onload = function () {
	var x = readCookie();
	if(x.indexOf("1") == -1){
		if(document.getElementById('surveyspace')){
			var thisone = document.getElementById('surveyspace');
			thisone.style.backgroundColor = '#ff00de';
			thisone.style.textAlign = 'center';
			thisone.style.color = '#ffffff';
			thisone.style.padding = '15px';
			thisone.style.fontFamily = "'Gill Sans', 'Franklin Gothic', 'Lucida Grande', Verdana, Sans-serif";
			thisone.style.fontSize = '16px';
			thisone.innerHTML = '¿Quieres m&aacute;s FRONTLINE en espa&ntilde;ol?  Toma nuestra encuesta &#187;';
			document.getElementById('surveyspace').onmouseover = surveyover;
			document.getElementById('surveyspace').onmouseout = surveyout;
			$('#surveyspace').slideDown(300);
			document.getElementById('surveyspace').onclick = surveyclick;
		}
	}
}

function surveyover () {
	document.getElementById('surveyspace').style.backgroundColor = '#ff0000';
}

function setCookie () {
	document.cookie = "frol_essur=1;path=/wgbh/pages/frontline/hugochavez/espanol/;expires=Wednesday, 31-Dec-2008 23:59:59 GMT";
}

function readCookie () {
	var pos = document.cookie.indexOf("frol_essur");
	var value = "";
	if (pos != -1) {
		value = document.cookie.substring(pos+11, pos+13);
	}
	return value;
}

function surveyout () {
	document.getElementById('surveyspace').style.backgroundColor = '#ff00de';
}

function surveyclick () {
	window.open('http://www.zoomerang.com/Survey/?p=WEB228JJZ535TK','flsurvey');
	$('#surveyspace').slideUp(300);
	setCookie();
}