﻿var tableaunoti="";
var couleur="#FFFFCC";
var largeur="150";
var hauteur="20";
var urlpage="";
var selectA="";
var selectB="";
var CouleurOver="silver";

var liens=new Array("multicam_notice1.html","multicam_notice5.html","multicam_notice3.html","multicam_notice4.html","multicam_notice2.html");
var lienstitre=new Array("Cam\éras","Les alarmes","Configuration","Le serveur","Le routeur");

function cccamnotice() {

urlpage=(document.location.href);

for (i=1; i<=5; i++)
{
	if (urlpage.search(liens[i-1])!=-1)
	{
	selectA='<img src=\"scripts/fleche.gif\" border=\"0\">&nbsp;';
	selectB='&nbsp;<img src=\"scripts/fleche.gif\" border=\"0\">';
	}
	else
	{
	selectA="";
	selectB="";
	}

tableaunoti+=("<table class=\"tablecls"+i+"\" cellspacing=\"0\" cellspadding=\"0\" width=\""+largeur+"\" bgcolor=\""+couleur+"\">");
tableaunoti+=("<tr><td onClick=\"self.location.href='"+liens[i-1]+"'\" width=\""+largeur+"\" align=\"center\" height=\""+hauteur+"\" onMouseOver=\"this.style.backgroundColor='"+CouleurOver+"'\" onMouseOut=\"this.style.backgroundColor=couleur\"><p>"+selectA+"<a href=\""+liens[i-1]+"\" class=\"liencls"+i+"\">"+lienstitre[i-1]+"</a>"+selectB+"</p></td></tr></table>");
}
document.write(tableaunoti);
}





