function ok(){
	document.myform.thisurl.value=location.href;
	document.target='_self';
	setVoted('83');
	//myform.submit();
}

function getVoted(name) {
	if (document.cookie.length > 0) {
		var start = document.cookie.indexOf(name + '=');
		var len = start + name.length + 1;
		if ((!start) && (name != document.cookie.substring(0, name.length))) return false;
		if (start == -1) return false;
		var end = document.cookie.indexOf(';', len);
		if (end == -1) end = document.cookie.length;
		return unescape(document.cookie.substring(len, end));
	}
	return false;
}

function setVoted (name) {
	document.cookie = name + "=1; path=/;";
}

if (getVoted('83')) {
	document.write('<a name=\"poll\"></a><h2>Sondage</h2><form action="" method="post"><h3>Parmi ces joueurs, quelle serait la meilleure recrue pour le PSG?</h3><ul><li class="pourcent"><strong>9%</strong>Dimitri Payet<span style="width:9%"/></span></li><li class="pourcent"><strong>65%</strong>J&eacute;r&eacute;my Menez<span style="width:65%"/></span></li><li class="pourcent"><strong>26%</strong>Keisuke Honda<span style="width:26%"/></span></li></ul></form><p style="text-align:center; margin-top:5px;"><b>368 votes</p>');
}
else {
	document.write('<h2>Sondage</h2><form method="post" action="/poll/vote/writepoll_new.php?Q_ID=83" name="myform" onsubmit="ok();"><h3>Parmi ces joueurs, quelle serait la meilleure recrue pour le PSG?</h3><ul><li class="check"><input name="R_ID" type="radio" value="299" id="q0"/><label for="q0">Dimitri Payet</label></li><li class="check"><input name="R_ID" type="radio" value="301" id="q1"/><label for="q1">J&eacute;r&eacute;my Menez</label></li><li class="check"><input name="R_ID" type="radio" value="303" id="q2"/><label for="q2">Keisuke Honda</label></li><li><input type="hidden" name="thisurl" value=""><input type="hidden" name="cmd" value="vote"><input class="fr" type="submit" value="Votez"></li></ul></form>');
}

