/* -- [>] Browser detection ------------------------------------------ */
function lib_browserCheck(){
	this.usr=navigator.userAgent;
	this.ver=navigator.appVersion;
	this.dom=document.getElementById?1:0;
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
	this.ie4=(document.all && !this.dom)?1:0;
	this.ie6=(this.ver.indexOf("MSIE")>-1 && this.dom && !this.ie4 && !this.ie5)?1:0;
	this.ie=(this.ie4 || this.ie5 || this.ie6);
	this.ns6=(this.dom && parseInt(this.ver) >= 5)?1:0;
	this.ns60=(this.usr.indexOf("6.0")>-1 && this.ns6)?1:0;
	this.ns4=(document.layers && !this.dom)?1:0;
	this.ns=(this.ns4 || this.ns6);
	this.ok=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6);
	this.mac=(this.ver.indexOf("Mac")>-1)?1:0;
	return this;
}
var lib_bw = new lib_browserCheck();

/* -- [>] Barre corporative ------------------------------------------ */

var corpoHtml = "";

if(lib_bw.ns4){
		corpoHtml += "<layer pagex='0' pagey='0' width='100%' height='25' visibility='show' background='"+root+"/img/barreCorpo_Bg.gif'>";
		corpoHtml += "    <embed src='"+root+"/fr/swf/corpo.swf' width='598' height='25' autostart='false' align='' quality='high' bgcolor='#FFFFFF' name='corpo' TYPE='application/x-shockwave-flash' pluginspace='http://www.macromedia.com/go/getflashplayer'></embed>";
		corpoHtml += "</layer>";
}

else{
		corpoHtml += "<div style='position: absolute; top: 0px; left: 0px; width: 100%; height: 25px; z-index: 1; visivility: visible; background-image: url("+root+"/img/barreCorpo_Bg.gif);'>";
		corpoHtml += "  <object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='598' height='25' id='corpo'>";
		corpoHtml += "    <param name='movie' value='"+root+"/fr/swf/corpo.swf'>";
		corpoHtml += "    <param name='quality' value='high'>";
		corpoHtml += "    <param name='bgcolor' value='#FFFFFF'>";
		corpoHtml += "    <embed src='"+root+"/fr/swf/corpo.swf' width='598' height='25' autostart='false' align='' quality='high' bgcolor='#FFFFFF' name='corpo' TYPE='application/x-shockwave-flash' pluginspace='http://www.macromedia.com/go/getflashplayer'></embed>";		
		corpoHtml += "  </object>";	
		corpoHtml += "</div>";
}
document.write(corpoHtml);

