// JavaScript Document
function lib_bwcheck(){ //Browsercheck (needed)
	this.ver=navigator.appVersion; 
	this.agent=navigator.userAgent;
	this.dom=document.getElementById?1:0
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
	this.ie7=(this.ver.indexOf("MSIE 7")>-1 && this.dom)?1:0;
	this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0;
	this.ie4=(document.all && !this.dom)?1:0;
	this.ie=this.ie4||this.ie5||this.ie6 || this.ie7;
	this.mac=this.agent.indexOf("Mac")>-1
	this.firefox = (this.agent.indexOf("Firefox")>-1 && this.dom )?1:0;
	this.opera5=this.agent.indexOf("Opera 5")>-1
	this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0; 
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie7 ||this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5 || this.dom)
	return this
}

	function getObject(objectId) {
		if (document.getElementById) return document.getElementById(objectId);
		else {
			if (document.layers) return document.layers[objectId];
			else{if (document.all) return document.all(objectId);}}}


window.onload = function(){
	
	var bw = new lib_bwcheck();
	var header = ""

	if(!bw.ie){
/*		header = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'	;
		header += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="752" height="154"';
		header += '<param name="movie" value="images/haut4.swf">';
		header += '<param name="quality" value="high">';
		header += '<param name="flashvars" value="menu=Esprit"></object>';
		}
		else{*/
			header += '<embed src="images/haut4.swf" width="752" height="154" quality="high';
			header += 'pluginspage="http://www.macromedia.com/go/getflashplayer"';
			header += 'type="application/x-shockwave-flash" flashvars="menu=Esprit"';
			header += '</embed>';
			getObject("head").innerHTML = header;
		}
	//alert(header);
		
	}