/* 2006-2009 - ZEF Créations - www.zef-creations.com*/

/* Fonctions pour les images sur liens  - concerne tout le site*/

function liens (texte, in_or_out) /* Format GIF */
		{
			if (in_or_out)
			{ var texte_final = "images/" + texte + "_hover.gif"; }
			else
			{ var texte_final = "images/" + texte + ".gif"; }
			
			var text_temp = "img_" + texte;
			
			document.getElementById(text_temp).src = texte_final;
			return in_or_out;
		}

function lienspng (texte, in_or_out) /* Format PNG */
		{
			if (in_or_out)
			{ var texte_final = "images/" + texte + "_hover.png"; }
			else
			{ var texte_final = "images/" + texte + ".png"; }
			
			var text_temp = "img_" + texte;
			
			document.getElementById(text_temp).src = texte_final;
			return in_or_out;
		}
		
function cd (texte, in_or_out) /* Format JPG */
		{
			if (in_or_out)
			{ var texte_final = "images/" + texte + "_hover.jpg"; }
			else
			{ var texte_final = "images/" + texte + ".jpg"; }
			
			var text_temp = "img_" + texte;
			
			document.getElementById(text_temp).src = texte_final;
			return in_or_out;
		}


/* Pour faire apparaître le dicton du chamber sur la page d'accueil  - concerne uniquement index.php*/	
	
function dicton()
	{
	window.open("../dicton.php","dicton","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=381,height=453,left=0,top=0")
	}

/* Pour faire apparaître le pett texte de l'antispam */
	
function about_antispam()
	{
	window.open("../about_antispam.php","about_antispam","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=220,height=220,left=0,top=0")
	}



/* Pour la petite fenêtre qui propose l'extrait musical avec Stéphane Séva - Page concerts et animations  - concerne uniquement concerts_animations.php */	
	

function audio_4()
	{
	window.open("../audio_4.php","audio_4","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=250,height=280,left=0,top=100")
	}
