
function cookieVal(cookieName) {
thisCookie = document.cookie.split("; ")
for (i=0; i<thisCookie.length; i++){
	if (cookieName == thisCookie[i].split("=")[0]){
		return thisCookie[i].split("=")[1];
	}
}
return 0;
}	
function popjeu(w,h) {
   //winzg=window.open("/gp/jeu2004/liste_gagnants.php","jeu","toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,width="+w+",height="+h);
   //winzg.focus();
}

if(cookieVal("jeunf")==0)
	{
	popjeu('385','445');
}

