﻿var tableaunoti="";
var couleur="#FFFFCC";
var largeur="150";
var hauteur="20";
var urlpage="";
var selectA="";
var selectB="";
var CouleurOver="silver";

var liens=new Array("cccam_notice1.html","cccam_notice2.html","cccam_notice3.html","cccam_notice4.html","cccam_notice5.html");
var lienstitre=new Array("G\én\éral","Moniteur et Options","Les emails","La surveillance","Le planificateur");

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);
}