<!--
if (document.all||document.layers) {
makeStatic();}

var text=new Array();
var thelink=new Array();

// Les Pages, titres, cette liste peut être étendue ou réduite
text[0]="Accueil site B.M";
text[1]="Windows XP.";
text[2]="Ecran de veille";
text[3]="Fond d'écran";
text[4]="Explorer conseils";
text[5]="Outlook Express";
text[6]="Office conseils";
text[7]="Word astuces";
text[8]="Excel tout";
text[9]="Power Point";
text[10]="Publisher";
text[11]="E-mail à l'auteur";
// Les liens qui correspondent aux pages Web, cette liste doit avoir le même nombre de titres
thelink[0]="../index.html";
thelink[1]="../pageswinxp06/lienswinxp06.html";
thelink[2]="../pagesecranveille06/ecraveil1.html";
thelink[3]="../fondecran06/fondecr.html";
thelink[4]="../pagesexplorer06/liensexplorer06.html";
thelink[5]="../outlookexpress06/index.html";
thelink[6]="../pagesoffice06/liensoffice06.html";
thelink[7]="../pageastucesword06/liensword06.html";
thelink[8]="../pagesastucesexcel/aliensexcel.html";
thelink[9]="../pagespowerpoint06/lienspowerpoint06.html";
thelink[10]="../pagespublisher06/lienspublisher06.html";
thelink[11]="../../contact/index.php";

// Entrer les cibles des pages.
/* Les valeurs possibles sont : 
==> rien ('') ==> Dans la même page (pas de target en fait).
==> new ==> Nouvelle page (_blank)
==> Nom_de_frame ==> Cible, le nom d'une frame (comme pour target=machin_chose)
*/

var linktarget=''

// NE RIEN CHANGER APRES

function navigateie(which){
if (linktarget=='')
window.location=thelink[which]
else if (linktarget=='new')
window.open(thelink[which])
else{
temp_var=eval("window.parent."+linktarget)
temp_var.location=thelink[which]
}
}

for (i=0;i<=text.length-1;i++)
if (document.all) {document.write('<tr><td height=20 bgcolor=orange onclick="navigateie('+i+')" onmouseover="className=\'hl\'" onmouseout="className=\'n\'"><font face="Arial, Helvetica, sans-serif"><b><font size="2"> '+text[i]+'</b></font></font></td></tr>')}
else {document.write('<tr><td bgcolor="green"><ilayer><layer height="18" onmouseover="this.bgColor=\'green\'" onmouseout="this.bgColor=\'green\'" width=131><font size=2 face=Arial> <a href="'+thelink[i]+'" target="'+linktarget+'" id="nounderline">'+text[i]+'</a></font></layer></ilayer></td></tr>')}

//-->
