<!--
function classDmc_Layer(){ /* Version 4.0 light */ /* Marc */ this.chemin=window.document; this.variable=false; this.navigateur="ie";
this.systeme="pc";
this.type="document.all.";
this.fintype="";
this.is_style="style";
if(((navigator.userAgent).toLowerCase()).indexOf("mac_power")!=-1){
if(((navigator.appName)).toLowerCase().indexOf("internet explorer")!=-1){this.systeme="mac";} }

//alert(typeof(document.all))
if( typeof(document.all)=="object" && typeof(document.getElementById) !="function" ){ 
this.navigateur="ie";

this.type="document.all."; 
}else if( typeof(document.all)=="object" && typeof(document.getElementById)=="function" ){
	this.navigateur="ie";
	this.type="document.all."; 
}else if( typeof(document.layers)=="object" ){
	this.navigateur="net"; this.type="document.layers."; 
	this.is_style="style"; 
} else if( typeof(document.getElementById)=="function" && typeof(document.all) =="undefined" ){ 
this.navigateur="net6";
this.type="document.getElementById('";
																	 this.fintype="')"; 
}else{} 

this.is_object=Dmc_object;
this.setObj = function(nom){ if( this.navigateur=="ie" && typeof(this.chemin.all[nom])=="object"){return this.chemin.all[nom]; 
}else if( this.navigateur=="ie5" && typeof(this.chemin.getElementById(nom)) =="object" ){return this.chemin.getElementById(nom); 
}else if( this.navigateur=="net" && typeof(this.chemin.layers[nom]) == "object" ){return this.chemin.layers[nom]; 
}else if( this.navigateur=="net6" && typeof(this.chemin.getElementById(nom)) == "object" ){
	return this.chemin.getElementById(nom); }else{return false; } } }
function Dmc_object(nom){ var texte=this.type+nom+this.fintype; var resultat=((typeof(eval(texte))=="object") && (typeof(eval(texte)) !=null))? eval(texte):false; return resultat; }
function Dmc_cacher(nom){ if(typeof(nom)=="object"){ if(this.navigateur=="net"){nom.visibility='hide';}else{nom.style.visibility='hidden';} } } classDmc_Layer.prototype.f_cacher=Dmc_cacher;
function Dmc_visible(nom){ if(typeof(nom)=="object"){ if(this.navigateur=="net"){nom.visibility='show';}else{nom.style.visibility='visible';} } } classDmc_Layer.prototype.f_visible=Dmc_visible;
function Dmc_setposy(nom,pos){ if((typeof(nom)=="object") && (!isNaN(pos))){ var position=parseInt(pos); if(this.navigateur=="net"){nom.pageY=position;}else{nom.style.top=position;} } } classDmc_Layer.prototype.set_posy=Dmc_setposy;
function Dmc_setposx(nom,pos){ if((typeof(nom)=="object") && (!isNaN(pos))){ var position=parseInt(pos); if(this.navigateur=="net"){nom.pageX= position;}else{nom.style.left= position;} } } classDmc_Layer.prototype.set_posx=Dmc_setposx;
function Dmc_sousobject(parent,fils){
	var resultat=false; var texte=this.type+fils+this.fintype;
	if(this.navigateur=="net" && typeof(this.is_object(parent))=="object"){
		if(typeof(this.is_object(parent).eval(texte))=="object"){ resultat=this.is_object(parent).eval(texte);
		}else{ debuger("classDmc_Layer","Dmc_sousobject /"+texte+" pas un sous object type net");}
		}else if(this.navigateur=="net6"){ if(typeof(eval(texte))=="object"){ resultat=eval(texte);
		}else{ debuger("classDmc_Layer","Dmc_sousobject /"+texte+" pas un sous object type net6");}
}else{ texte=this.type+fils; if(typeof(eval(texte))=="object"){ resultat=eval(texte);
}else{ debuger("classDmc_Layer","Dmc_sousobject /"+texte+" pas un sous object type ie");}}return resultat;}
classDmc_Layer.prototype.is_sousobject=Dmc_sousobject;
function Dmc_inherit(nom){ if(typeof(nom)=="object"){ if(this.navigateur=="net"){ nom.visibility='inherit';}else{ nom.style.visibility='inherit';}}}
classDmc_Layer.prototype.f_inherit=Dmc_inherit; 
function Dmc_getwidth(nom){ var resultat=false; if(typeof(nom)+""=="object"){ if(this.navigateur=="net"){ resultat=parseInt(nom.clip.width);}else{ resultat=parseInt(nom.style.width);}}return resultat;}
classDmc_Layer.prototype.get_width=Dmc_getwidth;
function Dmc_getheight(nom){ var resultat=false; if(typeof(nom)=="object"){ if(this.navigateur=="net"){ resultat=parseInt(nom.clip.height);}else{ resultat=parseInt(nom.style.height);}} return resultat;}
classDmc_Layer.prototype.get_height=Dmc_getheight;
function Dmc_setheight(nom,pos){ if((typeof(nom)=="object") && (!isNaN(pos))){ var hauteur=parseInt(pos); if(this.navigateur=="net"){ nom.clip.height=hauteur;}else{ nom.style.height=hauteur;}}}
classDmc_Layer.prototype.set_height=Dmc_setheight;
//-->