// CF : http://www.actulab.com/les-cookies-en-javascript.php
function EcrireCookie(nom, valeur) {

	var argv = EcrireCookie.arguments;
	var argc = EcrireCookie.arguments.length;
	var expires = (argc > 2) ? argv[2] : null;
	var path = (argc > 3) ? argv[3] : null;
	var domain = (argc > 4) ? argv[4] : null;
	var secure = (argc > 5) ? argv[5] : false;
	document.cookie = nom+"="+escape(valeur)+
	((expires==null) ? "" : ("; expires="+expires.toGMTString()))+
	((path==null) ? "" : ("; path="+path))+
	((domain==null) ? "" : ("; domain="+domain))+
	((secure==true) ? "; secure" : "");
	
	// test alert
	var action = "";
	if (valeur == null) {
		action = ' effacé !';
	} else {
		action = ' généré !';
	}
	//alert('Cookie '+nom+action+'\nValeur : '+valeur);
}
function getCookieVal(offset) {

	var endstr=document.cookie.indexOf (";", offset);
	if (endstr==-1) endstr=document.cookie.length;
	return unescape(document.cookie.substring(offset, endstr));
}
	
function LireCookie(nom) {

	var arg=nom+"=";
	var alen=arg.length;
	var clen=document.cookie.length;
	var i=0;
	while (i<clen)
	{
	var j=i+alen;
	if (document.cookie.substring(i, j)==arg) return getCookieVal(j);
	i=document.cookie.indexOf(" ",i)+1;
	if (i==0) break;
	
	}
	return null;
}

function AfficherCookie(nomCookie) {
	var cookieAffich = LireCookie(nomCookie);
	//document.write('Le cookie <i>'+nomCookie+'</i> contient la valeur : '+cookieAffich);
	alert('Le cookie '+nomCookie+' contient la valeur : '+cookieAffich);
}

function EffaceCookie(nom) {

	date=new Date;
	date.setFullYear(date.getFullYear()-1);
	EcrireCookie(nom,null,date);
}

function checkDivCookie(divId,nomCookie) {
	var valeurCookie = LireCookie(nomCookie);
	if (valeurCookie == null) {
		Show(divId);	// Affiche le lecteur interne
	} else {
		Hide(divId);	// Cache le lecteur interne
		Show('jukebox-none');	// pour éviter l'espace vide
		Hide('jukebox-popup-off');
		Show('jukebox-popup-on');
	}
}
