 
function MENTIONS_LEGALES ()
	{
	popUp = window.open('mentions_legales.htm','mentions_legales','width=340,height=550,left=10,top=10,scrollbars=yes,toolbars=no,menubars=no,location=no,resizable=no');
	}

 
function RECOMMANDEZ()
	{
	popUp = window.open('module_envoi_ami/partager.php','reglement','width=360,height=400,left=10,top=10,scrollbars=no,toolbars=no,menubars=no,location=no,resizable=yes');
	}
	
function NEWSLETTER()
	{
	popUp = window.open('module_newsletter/newsletter.php','newsletter','width=360,height=250,left=10,top=10,scrollbars=no,toolbars=no,menubars=no,location=no,resizable=no');
	}


/* Rollover */
 function SetImg(img_name,file)
        {
                if(document.images)
                        {
                        document.images[img_name].src = file;
                                }
                         }
						 
/* Fonction pour cacher le flash */

function disappear() {
	document.getElementById('masque').style.display = 'none';
	document.getElementById('flash-vid').style.display = 'none';
	document.getElementById('close-link').style.display = 'none';
}


/* Gère les cookies pour le flash */
function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

function eraseCookie(name) {
	createCookie(name,"",-1);
}


