//le calque de l'image	  ************************************

posXmenu = 346;
if (document.all){
	posYmenu = 86;
}
else{
	if (parseInt(navigator.appVersion) >4)	   //Netscape 6
	{
	posYmenu = 82;
	}
	else										//Netscape 4.7 4.5
	{
	posYmenu = 86;
	}
}

document.write('<style type="text/css">');
document.write('#topgauche { position:absolute; top:'+posYmenu+'px; left:'+posXmenu+'px; z-index:10; }')
document.write('</style>')

//document.write('<DIV ID=topgauche><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=252><TR><TD><TABLE CELLPADING=0 CELLSPACING=1 BORDER=0 WIDTH=100% ><TR>')
//document.write('<TD WIDTH=200 ALIGN=center> <img src="../images/images_cadre.gif" width="252" height="47"></TD>')
//document.write('</TR></TABLE></TD></TR></TABLE></DIV>')

document.write('<DIV ID=topgauche>')
document.write('<img src="../images/images_cadre.gif" width="252" height="47"></TD>')
document.write('</DIV>')

//les calques des textes	 ************************************

var tab_nom=new Array();
var tab_intitule=new Array();


tab_nom[0]='or'
tab_intitule[0]='Description de l\'or'
tab_nom[1]='argent'
tab_intitule[1]='Description de l\'argent'
tab_nom[2]='cathod'
tab_intitule[2]='Description du Cathode de cobalt'
tab_nom[3]='oxydeZinc'
tab_intitule[3]='Description de l\'Oxyde de zinc'
tab_nom[4]='sulfateCuivre'
tab_intitule[4]='Description du Sulfate de cuivre'
tab_nom[5]='trioxydeArsenic'
tab_intitule[5]='Description du Trioxyde d\'arsenic'
tab_nom[6]='concentreZinc'
tab_intitule[6]='Description du Concentré de zinc'
tab_nom[7]='concentrePlomb'
tab_intitule[7]='Description du Concentré de plomb'
tab_nom[8]='concentreCuivre'
tab_intitule[8]='Description du Concentré de cuivre'
tab_nom[9]='concentreFluorine'
tab_intitule[9]='Description du Concentré de fluorine'
tab_nom[10]='concentreCobalt'
tab_intitule[10]='Description du Concentré de cobalt'
tab_nom[11]='concentreHydroxideCobalt'
tab_intitule[11]='Description du Concentré d\'hydroxide de cobalt'


for(i=0;i<tab_nom.length;i++)
{

document.write('<style type="text/css">');
document.write('#'+tab_nom[i]+' { position:absolute; top:'+posYmenu+'px; visibility: hidden ; left:'+posXmenu+'px; z-index:10; }')
document.write('</style>')

document.write('<DIV ID='+tab_nom[i]+'><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=252><TR><TD><TABLE CELLPADING=0 CELLSPACING=1 BORDER=0 WIDTH=100% ><TR>')
document.write('<TD WIDTH=200 ALIGN=center><font face="Arial" size="2" color="#ffffff"> '+tab_intitule[i]+'</font></TD>')
document.write('</TR></TABLE></TD></TR></TABLE></DIV>')

}