function getObj(name){
	if (document.getElementById){
		this.obj = document.getElementById(name);
		this.style = document.getElementById(name).style;
	}
	else if (document.all){
		this.obj = document.all[name];
		this.style = document.all[name].style;
	}
}
currShow = 1;
function showCont (id) {
	if (currShow!=id) {
		new getObj("sn"+id).obj.className = "on";
		new getObj("scont"+id).obj.style.display = "block";
		new getObj("sn"+currShow).obj.className = "";
		new getObj("scont"+currShow).obj.style.display = "none";
		currShow = id;
	}
}
chFlash = '';
function showFlash(anim){
	chFlash = '<object type="application/x-shockwave-flash" data="'+anim+'" width="430" height="323"><param name="wmode" value="transparent"><a href="http://www.macromedia.com/go/getflashplayer" target="_blank"><img src="/images/notreoffre/flashplayer.gif" border="0" alt="" /></a><param name="movie" value="'+anim+'" /></object>';
	new getObj("flash").obj.innerHTML = chFlash;
}

function openPage() {
		document.location = "savoir_plus.aspx";
	}
