// Création de la base de données des messages
var msg=new InitMsg();
msg.Add("Cinema, Shopping, Mobile <a href=http://www.networkteams.com/>NetworkTeams.com</a>");
msg.Add("Visitez notre sponsor <a href=\"http://affiliates.allposters.com/link/redirect.asp?aid=351049\"  OnMouseOver=\"self.status='http://www.allposters.com';return true;\" OnMouseOut=\"self.status='';return true;\" class=\"subcat\">AllPosters.com</a>");
msg.Add("Contre le SPAM découvrez <a href=\"http://entier.ecosm.com/link/?ubtwe\"  OnMouseOver=\"self.status='http://www.firetrust.com';return true;\" OnMouseOut=\"self.status='';return true;\" class=\"subcat\">Mailwasher Pro</a>");
msg.Add("Lire vos emails avec <a href=\"http://www.mailreader.org\"  OnMouseOver=\"self.status='http://www.mailreader.org/';return true;\" OnMouseOut=\"self.status='';return true;\" class=\"subcat\">Mailreader.org</a>");

// COMPLETER LA BASE ICI
// msg.Add( );
function disp(txt) { document.write(txt) }
function InitMsg() {
	this.nb_item=0;
	this.Add=AddMsg;
	this.Aff=AffMsg;
}
function AddMsg(txt) {
	var nb = this.nb_item;
	this[nb]=txt;
	this.nb_item++;
}
function AffMsg() {
	var nb = this.nb_item;
	var no=Math.round(Math.random(1)*(nb-1));
	disp(" "+this[no]+" ");
}
function reload() {
	window.location=document.location;
}

document.write('<style>'
+'A.plus:ACTIVE, A.plus:LINK, A.plus:VISITED, A.plus:HOVER {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;color : #3333CC;}'
+'.internaute {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;}'
+'.textbleu {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;color : #384C96;font-weight : bold;}'
+'A.subcat:ACTIVE, A.subcat:LINK, A.subcat:VISITED {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;color : #394D94;}'
+'A.subcat:HOVER {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;color : #FF9600; text-decoration : none;}'
+'.catlist{font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;color : #000000;}'
+'</style>'

+'<form action="http://www.internaute.org/cgi-bin/links/search.cgi" method="GET">'
      +'<table border="0" cellspacing="0" cellpadding="0">'
      +'<tr>'
       +'<td height="25"><span class="textbleu">Rechercher sur Internaute.org</span></td>'
      +'</tr>'
      +'<tr>'
       +'<td><input type="text" size=10 name="query" style="width=120" class="internaute"><input type=submit value="Go !" name="submit" class="internaute">'
       +'</td>'
     +'</tr>'
      +'<tr>'
       +'<td><a href="http://www.internaute.org/cgi-bin/links/search.cgi" class="plus">Plus d\'options</a>'
       +'</td>'
     +'</tr>'
	 +'<tr><td class="catlist"><p>'
+'Powered by <a href="http://www.internaute.org" class="subcat">Internaute.org</a> © 2004<br>'
//+'Visitez notre sponsor <a href="http://affiliates.allposters.com/link/redirect.asp?aid=351049"  OnMouseOver="self.status=\'http://www.allposters.com\';return true;" OnMouseOut="self.status=\' \';return true;" class="subcat">AllPosters.com</a>'
+'');

msg.Aff()


document.write('</td></tr>'
     +'</table>'
+'</form>');
