function montre(id) 
{
	var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i))
		{
		document.getElementById('smenu'+i).style.display='none';
		}
	}
	if (d) 
	{
		d.style.display='block';
	}
}


function activPage(test)
{
	/*if (test != "recherche")*/
	if ( (test != "recherche") && (test != "membre") && (test != "contact") )
	{
		document.getElementById(test).className="activLink";
	}
}

function changeImage(nom)
{
	var x = document.getElementById('grandphoto');
	if (x)
	{
		var txt = '<img src="'+nom+'" alt="" />';
		x.innerHTML = txt;
	}
}

 
 
function videoWindow(vignette,titre)
{
	w=open("",'image','width=440, height=380,left=400,top=300,toolbar=no,scrollbars=no,resizable=no, statusbar=no');
	w.document.write("<html><head><title>"+titre+"</title></head>");
	w.document.write("<body><div id='videoView'><object width='425' height='355'><param name='movie' value='http://www.youtube.com/v/"+vignette+"'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/"+vignette+"' type='application/x-shockwave-flash' wmode='transparent' width='425' height='355'></embed></object></div>");
	w.document.write("</body></html>");
	w.document.close(); 
}



