// JavaScript Document
var IS_IE = (document.all) ? true : false;
var CLASS_NAME = (IS_IE) ? "className" : "class";

function creerFlash(swf, largeur, hauteur, couleur, nom ) {
	document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\""+largeur+"\" height=\""+hauteur+"\" id=\""+nom+"\" align=\"middle\">\n");
	document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />\n");
	document.write("<param name=\"movie\" value=\""+swf+"\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\""+couleur+"\" /><embed src=\""+swf+"\" quality=\"high\" bgcolor=\""+couleur+"\" width=\""+largeur+"\" height=\""+hauteur+"\" name=\""+nom+"\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />\n");
	document.write("</object>\n");
}

function showmenu(elmnt) {
	document.getElementById(elmnt).style.visibility="visible";
	document.getElementById(elmnt).style.display='block';
}

function hidemenu(elmnt) {
	document.getElementById(elmnt).style.visibility="hidden";
	document.getElementById(elmnt).style.display='none';
}
function showSousMenu(elmnt) {
	//this.style.visibility="visible";
	//this.style.display='block';
	document.getElementById(elmnt).style.visibility="visible";
	document.getElementById(elmnt).style.display='block';
}

function hideSousMenu(elmnt) {
	//this.style.visibility="hidden";
	//this.style.display='none';
	document.getElementById(elmnt).style.visibility="hidden";
	document.getElementById(elmnt).style.display='none';
}