function request(url){
	var head = document.getElementsByTagName('head').item(0);
	var script = document.createElement('script');
	script.setAttribute('src',url);
	script.setAttribute('type', 'text/javascript');
    script.setAttribute("charset", "ISO-8859-1");
	head.appendChild(script);	
}
var wishes=null;
var current_wish=-1;
function wishes_loaded(in_wishes){
	wishes=in_wishes;
	Display();
}
function vote(val){
	if (!wishes[current_wish].voted){
		if (val==1){
			request("http://www.ustart.org/routines/server/wish.php?op=vote&vote=1&id="+wishes[current_wish].id);
			document.getElementById("wish_status").innerHTML="vote pris en compte";
			wishes[current_wish].voted=true;
		}else
		if (val==-1){
			request("http://www.ustart.org/routines/server/wish.php?op=vote&vote=0&id="+wishes[current_wish].id);
			document.getElementById("wish_status").innerHTML="vote pris en compte";
			wishes[current_wish].voted=true;
		}else
			document.getElementById("wish_status").innerHTML="";
	}else
		document.getElementById("wish_status").innerHTML="";
	current_wish++;
	Display();
}
function wish_func(form){
	if (form){
		if (form.wish.value.length>15){
			request("http://www.ustart.org/routines/server/wish.php?op=wish&wish="+escape(form.wish.value));
			document.getElementById("wish_status").innerHTML="voeux enregistré";
		}
		Display();
	}else{
		var HTML="";
		HTML="<form action='javascript:;' onsubmit='wish_func(this)'><span style='background:rgb(255, 252, 175);padding:5px;font-size:15px;'><i><b>Je souhaite <input  style='width:70%' type='text' name='wish'></i></b></span>";
		HTML+="<br><br><center><input type='button' onclick='Display()' value='Annuler'>&nbsp; - &nbsp;<input type='submit' value='Faire un voeux'></center></form>";
		document.getElementById("wish_div").innerHTML=HTML;
	}
}
function Display(){
	if (!wishes)return;
	if (current_wish==-1)current_wish=parseInt(Math.random()*wishes.length);
	if (current_wish>=wishes.length)current_wish=0;
	var HTML="";
	HTML="<span style='background:rgb(255, 252, 175);padding:5px;'><i><b>Je souhaite "+wishes[current_wish].wish+"</i></b></span> +"+wishes[current_wish].pro+"/-"+wishes[current_wish].con;
	if (wishes[current_wish].done)
		HTML+="<br><br><center>Voeux exauc&eacute;! &nbsp; - &nbsp;<a href='javascript:;' onclick='vote(0)'>Suivant</a>&nbsp; - &nbsp;<a href='javascript:;' onclick='wish_func(null)'>Faire un voeux</a></center>";
	else
		HTML+="<br><br><center><a href='javascript:;' onclick='vote(1)'>J'aime</a>&nbsp; - &nbsp;<a href='javascript:;' onclick='vote(0)'>Neutre (suivant)</a>&nbsp; - &nbsp;<a href='javascript:;' onclick='vote(-1)'>J'aime pas</a>&nbsp; - &nbsp;<a href='javascript:;' onclick='wish_func(null)'>Faire un voeux</a></center>";
	document.getElementById("wish_div").innerHTML=HTML;
}
request("http://www.ustart.org/routines/server/wish.php?op=get");