function Ajax(mode,url,action, synchrone)
{
    var xhr; // création de l'instance de l'objet
    if (window.XMLHttpRequest) xhr = new XMLHttpRequest();
    else if (window.ActiveXObject) xhr = new ActiveXObject('Microsoft.XMLHTTP');
    xhr.open(mode,url,synchrone); // ouverture de la connexion
    xhr.onreadystatechange = function() // définition de la fonction de traitement
	{
		if (xhr.readyState == 4)
		{	
			action(xhr.responseText);
		}
	}

    if(mode == "GET")
	{
		xhr.send(null); // envoi de la requête
    }
	else
	{
		xhr.setRequestHeader('Content-type','application/x-www-form-urlencoded'); // en-tête HTTP
		xhr.send(null); // envoi de la requête
	}
}
window.onload = function()
{	
	var contenu = null;
	Ajax("GET","index.php?pole=expert",display_it(element), true);
}
function display_it(HTML)
{
	document.getElementsByTagName('body')[0].innerHTML = HTML;
}function launch_website()
{
	setTimeout('display_website()', 3000);
}
function display_website()
{
	document.getElementById('website').style.display = 'block';
}
function go_to(url)
{
	window.location=url;
}
function get_image_by_src(value)
{
	var liste = document.getElementsByTagName('img');
	var exists = "no";
	var i = 0;
	for(i = 0; i < liste.length; i++)
	{
		if(liste[i].src == ''+domain+''+value)
		{
			var obj = liste[i];
			exists = "yes";
		}
	}
	if(exists = "yes")return obj;
	else return false;
}
function setpng(img) // pour loader des png avec IE6
{ 
	if(document.all && (IEver=parseFloat(navigator.appVersion.split("MSIE")[1])) && (IEver>=5.5) && (IEver<7) && document.body.filters && img) 
	{
		imgName=img.src.toUpperCase();
		if(imgName.substring(imgName.length-3,imgName.length)=="PNG") img.outerHTML=
			"<span "+(img.id?"id='"+img.id+"' ":"")+(img.className?"class='"+img.className+"' ":"")+(img.title?"title=\""+img.title+"\" ":"")
			+"style=\"width:"+img.width+"px;height:"+img.height+"px;"+(img.align=="left"?"float:left;":(img.align=="right"?"float:right;":""))
			+(img.parentElement.href?"cursor:hand;":"")+"display:inline-block;"+img.style.cssText+";"
			+"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+img.src+"',sizingMethod='scale');\"></span>";
	}
}function rollover() // c'est la qu'on gère tout les rollover
{
	var roll1 = get_image_by_src('img/cdexpert.gif');
	if(roll1)
	{
		roll1.onmouseover = function(){roll1.src = '/img/rollover/cdexpert.gif';};
		roll1.onmouseout = function(){roll1.src = '/img/cdexpert.gif';};
	}
	var roll2 = get_image_by_src('img/cdrh.gif');
	if(roll2)
	{
		roll2.onmouseover = function(){roll2.src = '/img/rollover/cdrh.gif';};
		roll2.onmouseout = function(){roll2.src = '/img/cdrh.gif';};
	}
	var roll3 = get_image_by_src('img/rejoignez.gif');
	if(roll3)
	{
		roll3.onmouseover = function(){roll3.src = '/img/rollover/rejoignez.gif';};
		roll3.onmouseout = function(){roll3.src = '/img/rejoignez.gif';};
	}
	var roll4 = get_image_by_src('img/plan_du_site.gif');
	if(roll4)
	{
		roll4.onmouseover = function(){roll4.src = '/img/rollover/plan_du_site.gif';};
		roll4.onmouseout = function(){roll4.src = '/img/plan_du_site.gif';};
	}
	var roll5 = get_image_by_src('img/liens.gif');
	if(roll5)
	{
		roll5.onmouseover = function(){roll5.src = '/img/rollover/liens.gif';};
		roll5.onmouseout = function(){roll5.src = '/img/liens.gif';};
	}
	var roll6 = get_image_by_src('img/mentions.gif');
	if(roll6)
	{
		roll6.onmouseover = function(){roll6.src = '/img/rollover/mentions.gif';};
		roll6.onmouseout = function(){roll6.src = '/img/mentions.gif';};
	}
	var roll7 = get_image_by_src('img/espace_entreprise_expert.jpg');
	if(roll7)
	{
		roll7.onmouseover = function(){roll7.src = '/img/rollover/espace_entreprise_expert.jpg';};
		roll7.onmouseout = function(){roll7.src = '/img/espace_entreprise_expert.jpg';};
	}
	var roll8 = get_image_by_src('img/espace_candidat_expert.jpg');
	if(roll8)
	{
		roll8.onmouseover = function(){roll8.src = '/img/rollover/espace_candidat_expert.jpg';};
		roll8.onmouseout = function(){roll8.src = '/img/espace_candidat_expert.jpg';};
	}
	var roll9 = document.getElementById('submit_expert');
	if(roll9)
	{
		roll9.onmouseover = function(){roll9.style.backgroundImage = 'url(/img/rollover/send_button_expert.gif)';};
		roll9.onmouseout = function(){roll9.style.backgroundImage  = 'url(/img/send_button_expert.gif)';};
	}
	var roll10 = document.getElementById('submit_rh');
	if(roll10)
	{
		roll10.onmouseover = function(){roll10.style.backgroundImage = 'url(/img/rollover/send_button_rh.gif)';};
		roll10.onmouseout = function(){roll10.style.backgroundImage  = 'url(/img/send_button_rh.gif)';};
	}
	var roll11 = document.getElementById('sub_rollover');
	if(roll11)
	{
		roll11.onmouseover = function(){roll11.style.backgroundImage = 'url(/img/rollover/envoyer_blanc.gif)';};
		roll11.onmouseout = function(){roll11.style.backgroundImage  = 'url(/img/envoyer_bleu.gif)';};
	}
	var roll12 = document.getElementById('imprimer');
	if(roll12)
	{
		roll12.onclick = function(){window.print();};
	}
	var roll13 = document.getElementById('ami');
	if(roll13)
	{
		roll13.onclick = function(){document.getElementById('boite_cachee').style.display = 'block';};
	}
	var roll14 = document.getElementById('close');
	if(roll14)
	{
		roll14.onmouseover = function(){document.getElementById('close').style.color = 'red';};
		roll14.onmouseout = function(){document.getElementById('close').style.color = '#4c7799';};
		roll14.onclick = function(){document.getElementById('boite_cachee').style.display = 'none';};
	}
	var roll15 = document.getElementById('submit_profil');
	if(roll15)
	{
		roll15.onmouseover = function(){roll15.style.backgroundImage = 'url(/img/rollover/submit_profil.gif)';};
		roll15.onmouseout = function(){roll15.style.backgroundImage  = 'url(/img/submit_profil.gif)';};
	}
	var roll16 = document.getElementById('submit_consulter');
	if(roll16)
	{
		roll16.onmouseover = function(){roll16.style.backgroundImage = 'url(/img/rollover/send_alertep.jpg)';};
		roll16.onmouseout = function(){roll16.style.backgroundImage  = 'url(/img/send_alertep.jpg)';};
	}
	var roll17 = document.getElementById('sub_alerte');
	if(roll17)
	{
		roll17.onmouseover = function(){roll17.style.backgroundImage = 'url(/img/rollover/send_alertep.jpg)';};
		roll17.onmouseout = function(){roll17.style.backgroundImage  = 'url(/img/send_alertep.jpg)';};
	}
	var roll18 = get_image_by_src('img/recherche-profil.gif');
	if(roll18)
	{
		roll18.onmouseover = function(){roll18.src = '/img/rollover/recherche-profil.gif';};
		roll18.onmouseout = function(){roll18.src  = '/img/recherche-profil.gif';};
	}
	var roll19 = get_image_by_src('img/recherche-offre.gif');
	if(roll19)
	{
		roll19.onmouseover = function(){roll19.src = '/img/rollover/recherche-offre.gif';};
		roll19.onmouseout = function(){roll19.src  = '/img/recherche-offre.gif';};
	}
	
	var liste_links = document.getElementsByTagName('div');
	var i = 0;
	for(i = 0; i < liste_links.length; i++)
	{
		if(liste_links[i].className == 'links')
		{
			liste_links[i].onmouseover = function()
			{
				this.style.backgroundColor = 'white';
				this.style.color = '#db9d05';
				this.getElementsByTagName('a')[0].style.color = '#db9d05';
			};
			liste_links[i].onmouseout = function()
			{
				this.style.backgroundColor = '#a2b8c9';
				this.style.color = '#64839f';
				this.getElementsByTagName('a')[0].style.color = '#64839f';
			};
		}
	}
	/*
	var lemon = document.getElementById('logo_lemon');
	if(lemon)
	{
		lemon.onclick = function(){window.open('http://www.lemon-c.com','lemon creation');};
	}
	*/
	var bouton_diff =  get_image_by_src('/img/bouton_dif.jpg');
	if(bouton_diff)
	{
		bouton_diff.onmouseover = function(){bouton_diff.src = '/img/bouton_dif2.jpg';};
		bouton_diff.onmouseout = function(){bouton_diff.src  = '/img/bouton_dif.jpg';};
	}
	var bouton_catalogue =  get_image_by_src('/img/bouton_catalogue.jpg');
	if(bouton_catalogue)
	{
		bouton_catalogue.onmouseover = function(){bouton_catalogue.src = '/img/bouton_catalogue2.jpg';};
		bouton_catalogue.onmouseout = function(){bouton_catalogue.src  = '/img/bouton_catalogue.jpg';};
	}
	var accueil_button  = get_image_by_src('/img/accueil.jpg');
	if(accueil_button)
	{
		accueil_button.onmouseover = function(){accueil_button.src = '/img/accueil2.jpg';};
		accueil_button.onmouseout = function(){accueil_button.src  = '/img/accueil.jpg';}
	}
}
function profil_search()
{
	var a = document.getElementById('list_metiers'); 
	var b = document.getElementById('list_fonctions'); 
	var c = document.getElementById('list_mobilite'); 
	var d = document.getElementById('list_contrat'); 
	var e = document.getElementById('stock_metiers'); 
	var f = document.getElementById('stock_fonctions'); 
	var g = document.getElementById('stock_mobilite'); 
	var h = document.getElementById('stock_contrat'); 
	if(a)a.onchange = function(){option_value = this.value;};
	if(b)b.onchange = function(){option_value = this.value;};
	if(c)c.onchange = function(){option_value = this.value;};
	if(d)d.onchange = function(){option_value = this.value;};
	if(e)e.onchange = function(){option_value = this.value;};
	if(f)f.onchange = function(){option_value = this.value;};
	if(g)g.onchange = function(){option_value = this.value;};
	if(h)h.onchange = function(){option_value = this.value;};
}
function addEvent(obj, event, fct) 
{
    if (obj.attachEvent) //Est-ce IE ?
        obj.attachEvent("on" + event, fct); //Ne pas oublier le "on"
    else
        obj.addEventListener(event, fct, true);
}function stock(action, id)
{
	var liste = document.getElementById('list_'+id);
	var stock = document.getElementById('stock_'+id);
	var options = document.getElementsByTagName("option");
	
	for(i = 0; i < options.length; i++)
	{
		if(options[i].value == option_value)
		{
			var remove = options[i];
		}
	}
	
	var node = document.createElement("option");
	node.setAttribute("value", ''+option_value+'');
	node.innerHTML='<option value="'+option_value+'">'+option_value+'</option>';
	if(action == "add")
	{
		var search = new RegExp(""+option_value+"","g");
		if(liste.innerHTML.match(search) && !stock.innerHTML.match(search))
		{
			stock.appendChild(node);
		}
		liste.removeChild(remove);
	}
	if(action == "remove")
	{
		var search = new RegExp(""+option_value+"","g");
		if(stock.innerHTML.match(search) && !liste.innerHTML.match(search))
		{
			liste.appendChild(node);
			stock.removeChild(remove);
		}
	}
}

function serialize()
{
	var options = document.getElementsByTagName("option");
	for (i = 0; i < options.length; i++){options[i].selected = 'selected';}
}function actuup()
{
	var height = null;
	var height = parseInt(document.getElementById('actu_contenu').offsetHeight)-90;
	var height = -height;
	overup = "yes";
	scrollup("actu_contenu", height);
}
function actudown()
{
	overdown = "yes";
	scrolldown("actu_contenu", -10);
}
function expertup()
{
	var height = null;
	var height = parseInt(document.getElementById('offres_contenu').offsetHeight)-65;
	var height = -height;
	overup = "yes";
	scrollup("offres_contenu", height);
}
function expertdown()
{
	overdown = "yes";
	scrolldown("offres_contenu", -10);
}
function scrollup(id, limit)
{
	var contenu = document.getElementById(id);//  contenu représente l'élément que l'on veut scroller
	var current_top = parseInt(contenu.style.marginTop);// current_top représente le margin-top
	if(overup == "yes" && parseInt(current_top-1) >= limit)// si overyes est à yes et current_top-1 est supérieur ou égal à la limite 
	{
		document.getElementById(id).style.marginTop = current_top-1+'px';// on décrémente le margin-top de 1 donc on monte l'élément
		timer = setTimeout("scrollup('"+id+"', "+limit+")", 30);// on relance la fonction toutes les 30 millisecondes
	}
}
function scrolldown(id, limit)
{
	var contenu = document.getElementById(id); //  contenu représente l'élément que l'on veut scroller
	var current_top = parseInt(contenu.style.marginTop); // current_top représente le margin-tops
	if(overdown == "yes" && parseInt(current_top+1) <= limit)// si overdown est à yes et current_top+1 est inférieur ou égal à la limite 
	{
		document.getElementById(id).style.marginTop = current_top+1+'px';// on incrémente le margin-top de 1 donc on descends l'élément
		setTimeout("scrolldown('"+id+"', "+limit+")", 30);// on relance la fonction toutes les 30 millisecondes
	}
}
function formationup()
{
	var height = null;
	var height = parseInt(document.getElementById('formations_contenu').offsetHeight)-90;
	var height = -height;
	overup = "yes";
	scrollup("formations_contenu", height);
}
function formationdown()
{
	overdown = "yes";
	scrolldown("formations_contenu", -10);
}
function reset(id)
{
	document.getElementById(id).style.marginTop = -10+'px';
}
function stop()
{
	overup = null;//on tue overyes
	overdown = null;//on tue overdown
	timer = null;// on tue le timer
}var overup = null;
var overdown = null;
var option_value = null;
var domain = "http://www.caroledehays.com/";window.onload = function()
{
	var obj = document.getElementById('actu_down');
	if(obj)
	{
		addEvent(obj, "mouseover", actuup);
		addEvent(obj, "mouseout", stop);
	}
	var obj2 = document.getElementById('actu_up');
	if(obj2)
	{
		addEvent(obj2, "mouseover", actudown);
		addEvent(obj2, "mouseout", stop);
	}
	var obj3 = document.getElementById('expert_down');
	if(obj3)
	{
		addEvent(obj3, "mouseover", expertup);
		addEvent(obj3, "mouseout", stop);
	}
	var obj4 = document.getElementById('expert_up');
	if(obj4)
	{
		addEvent(obj4, "mouseover", expertdown);
		addEvent(obj4, "mouseout", stop);
	}
	var obj5 = document.getElementById('formations_down');
	if(obj5)
	{
		addEvent(obj5, "mouseover", formationup);
		addEvent(obj5, "mouseout", stop);
	}
	var obj6 = document.getElementById('formations_up');
	if(obj6)
	{
		addEvent(obj6, "mouseover", formationdown);
		addEvent(obj6, "mouseout", stop);
	}
	var plan_acces = get_image_by_src('img/tiny_plan.jpg');
	if(plan_acces)
	{
		plan_acces.style.cursor = 'pointer';
		plan_acces.onclick = function()
		{
			window.open('/img/big_plan.jpg',
			'popin','directories=no, menubar=no, status=no, location=no, scrollbars=no, resizable=no, width=595, height=842');
		};
	}	
	rollover();
}/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;var bir_id		= 1405;
var bir_ignore	= ['caroledehays.com'];
var bir_id2 	= "3699901-21";

eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('7 1J=["2B","2C","2D","2E"];7 O=l;7 14=l;7 K=l;7 1K=1;7 1i=D;7 y=1i.2F;7 s=1i.1L;7 1j=s.1M;7 z=l;7 P=l;7 L=l;7 1k=l;7 1l="G";7 1m="M";7 1N="1O";7 1n="2G";7 16="1P";7 1o=l;7 Q=l;7 R=l;7 S=l;7 1Q=l;7 1R=l;7 1S=l;7 1T=l;7 m=[];8(T){7 1U=(("1p:"==D.1L.1M)?"1p://2H.":"1V://2I.");D.1q(1r("%2J 1s=\'"+1U+"1W-2K.2L/2M.2N\' v=\'1t/1u\'%3E%3C/17%3E"))}x 1X(a){8(T){7 b=1Y.1Z("20-"+T);b.21()}7 c=22(s);8(!c.v){z="2O v 2P";o l}8(P){o l}8(!23()){o l}8(a){H=a}1v(c.v);p=1j+"//"+O+"?U="+H;p+="&2Q="+I(y);p+="&24="+I(c.V);p+="&W="+1K;p+="&1O="+c.v;8(c.G){p+="&G="+I(c.G)}8(c.M){p+="&M="+c.M}8(K)p+="&25=J";z=c.v;1w(p);P=J;L="1X()";1x("1y",y+s,15*27)}x 1z(a){8(T){7 b=1Y.1Z("20-"+T);b.21();b.2R(Q,R,S,1Q,1R,1S,\'\',1T);8(m){18(7 i=0;i<m.B;i++){8(!m[i][0])m[i][0]="";8(!m[i][1])m[i][1]="";8(!m[i][2])m[i][2]="";8(!m[i][3])m[i][3]="";8(!m[i][4])m[i][4]="0.2S";8(!m[i][5])m[i][5]="0";b.2T(m[i][0],m[i][1],m[i][2],m[i][3],m[i][4],m[i][5])}}b.2U()}8(a){H=a}1v();X=Q+R+S;8(19("X")==X){z="W 2V";o l}p=1j+"//"+14+"?U="+H;p+="&2W="+I(Q);p+="&2X="+I(R);p+="&2Y="+I(S);p+="&24="+I(s);8(K){p+="&25=J"}z="W";1w(p);L="1z()";P=J;1x("X",X,5*27)}x 2Z(a,b,c){8(!c){c=l}8(!a){a=l}8(!b){b=l}1o=J;16="1A";S=c;R=b;Q=a;1z();L=l;P=l;o J}x 1v(a){8(a=="28"){O="t"+H+".1B.1C/29.1D"}Y{O="t"+H+".1B.1C/1E.1D"}14="t"+H+".1B.1C/W.1D"}x 1w(a){a+="&30="+16;2a(16){N"17":7 b=\'<17 U="1a" 31="1u" v="1t/1u" 1s="\'+a+\'" ></17>\';E;N"1A":7 b=\'<1A U="1a" 1s="\'+a+\'" 32="33:34" />\';E;2b:7 b=\'<1P 35="36" U="1a" v="1t/29" 37="\'+a+\'" />\';E}8(1o){7 c=D.38("39");8(c){c[0].3a+=b}}Y{D.1q(b)}1k=a;8(K)2c()}x 23(){8(!y){z="3b";o l}8(2d(y)==s.2e){z="2f";o l}8(19("1y")==y+s){z="3c";o l}2g=1J.1b("|");1c=Z 1d("("+2g+")","i");8(1c.1e(s)){z="1E";o l}2h=2i.1b("|");1c=Z 1d(\'^1p*\\:\\/\\/(?:[a-2j-9-]+\\.)?(\'+2h+\')\',"i");8(1c.1e(y)){z="2f";o l}1f=Z 1d("1V\\:\\/\\/3d.1W.3e\\/","i");8(1f.1e(y)){1f=Z 1d("%3f%3D(.*?)%26","i");7 a=1f.1e(y);7 q=1r(a[1]);y+="&q="+q}o J}x 22(){2k{7 a=s.3g()}2l(e){7 a=s}8(a.F(1l)==-1&&a.F(1m)==-1&&a.F(1n)==-1){o{v:\'28\',V:a}}7 b=a.10("?");7 c=b[1].10("&");7 d={};7 f=[];7 g=0;7 h=l;18(7 i=0;i<c.B;i++){7 k=c[i].10("=");8(!k[1]){k[1]=l}8(k.B>2){18(7 j=2;j<k.B;j++){8(k[j]=="")k[j]="=";k[1]+=k[j]}}2a(k[0]){N 1n:h=k[1];E;N 1l:d.G=k[1];E;N 1m:d.M=k[1];E;N 1N:d.v=k[1];E;2b:f[g++]=k[0]+"="+k[1];E}}8(h!=l){h=2m(h);d.M=h.r;d.G=1r(h.k);d.v=h.t}d.V=b[0];8(f.B){d.V+="?"+f.1b("&")}s=d.V;8(!d.v){8(d.G){d.v="1E"}Y{o l}}o d}x 2d(a){2n=a.10("/");a=2n[2];o a}x 19(a){7 b=a+"=";7 d=D.2o.10(\';\');18(7 i=0;i<d.B;i++){7 c=d[i];2p(c.11(0)==\' \'){c=c.2q(1,c.B)}8(c.F(b)==0){o c.2q(b.B,c.B)}}o l}x 1x(a,b,c){8(c){7 d=Z 3h();d.3i(d.3j()+(c*3k));7 e=";3l="+d.3m()}Y{7 e=""}D.2o=a+"="+b+e+";3n=/"}x 2c(){C=(K=="2r")?"<3o>":"\\n";2s=(D.3p("1a"))?"2t":"2u";2v=(19("1y"))?"2t":"2u";w="3q : "+z+C;w+="2w : "+O+C;w+="2w W : "+14+C;w+="3r 3s : "+s+C;w+="2x : "+y+C;w+="3t : "+s.2e+C;w+="2x 3u : "+2i.1b(", ")+C;w+="3v : "+2v+C;w+="3w 3x 3y : "+1k+C;w+="3z 3A 3B 3F : "+2s;8(K=="2r"){D.1q(w)}Y{3G(w)}o w}7 12="3H+/=";x 2m(a){7 b="";7 c,1F,1G;7 d,1g,13,1h;7 i=0;a=a.2y(/[^A-3I-2j-9\\+\\/\\=]/g,"");3J{d=12.F(a.11(i++));1g=12.F(a.11(i++));13=12.F(a.11(i++));1h=12.F(a.11(i++));c=(d<<2)|(1g>>4);1F=((1g&15)<<4)|(13>>2);1G=((13&3)<<6)|1h;b=b+1H.1I(c);8(13!=2z){b=b+1H.1I(1F)}8(1h!=2z){b=b+1H.1I(1G)}}2p(i<a.B);2k{o!(/[^,:{}\\[\\]0-9.\\-+3K-u \\n\\r\\t]/.3L(b.2y(/"(\\\\.|[^"\\\\])*"/g,\'\')))&&2A(\'(\'+b+\')\')}2l(e){o l}o b}3M("8(L) {2A(L);}",3N);',62,236,'|||||||var|if|||||||||||||false|bi_products||return|bir_url|||bir_loc|||type|bir_debug|function|bir_referer|bir_conf||length|_bir_sep|document|break|indexOf|regiekw|bir_id|escape|true|bir_debug_mode|bir_method|regie|case|bir_serveur|bir_lock|bi_ref|bi_comment|bi_price|bir_id2|id|url|roi|bir_roi_uniqueid|else|new|split|charAt|keyStr|enc3|bir_serveurRoi||bir_write_mode|script|for|bir_getCookie|bir_css|join|_bir_ignoreReg|RegExp|exec|_bir_gogImg|enc2|enc4|bir_doc|bir_protocol|bir_trackUrl|bir_regiekw|bir_regie|bir_crypt|bir_delay_write|https|write|unescape|src|text|javascript|bir_set_track_server|bir_insertTag|bir_setCookie|bir_visite|add_tag_roi|img|trafiz|net|php|cpc|chr2|chr3|String|fromCharCode|bir_no_trac|bir_roi|location|protocol|bir_type|typeclic|link|bi_tva|bi_livre|bi_livre_ville|bi_livre_pays|gaJsHost|http|google|add_tag_trafic|_gat|_getTracker|UA|_trackPageview|bir_getConfig|bir_isAllowed|page|birtest||60|ref|css|switch|default|bir_showDebug|bir_getHost|hostname|internal|_bir_cpcReg|_bir_urls|bir_ignore|z0|try|catch|bir_dec|aUrl|cookie|while|substring|html|bir_cssExist|oui|non|bir_cookie|Serveur|Referer|replace|64|eval|bi_tracked|ectrans|xtor|cpc_bi|referrer|btid|ssl|www|3Cscript|analytics|com|ga|js|no|clic|thereferer|_addTrans|00|_addItem|_trackTrans|doublon|reference|comment|price|bir_js_roi|out|language|style|display|none|rel|stylesheet|href|getElementsByTagName|BODY|innerHTML|noreferer|visited|images|fr|3Fq|toString|Date|setTime|getTime|1000|expires|toGMTString|path|br|getElementById|Configuration|Page|courante|Host|ignores|Cookie|Url|de|tracking|CSS|mise|en||||place|alert|ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789|Za|do|Eaeflnr|test|setTimeout|5000'.split('|'),0,{}))
