<script language="JavaScript">
<!--
//D'autres script,applet,images sur webgraf.Com
//Mathieu Gros, webmaster@webgraf.Com
function getCookieVal (offset){
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1) endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));}
function GetCookie (name){ var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0; while (i < clen){ var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;}
return null;}
function SetCookie (name, value){
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (2 < argc) ? argv[2] : null;
var path = (3 < argc) ? argv[3] : null;
var domain = (4 < argc) ? argv[4] : null;
var secure = (5 < argc) ? argv[5] : false;
document.cookie = name + "=" + escape (value) +
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
((path == null) ? "" : ("; path=" + path)) +
((domain == null) ? "" : ("; domain=" + domain)) +
((secure == true) ? "; secure" : "");}
function ResetCounts(name){visits = 0;
SetCookie("visits", visits, expdate , "/", null, false);
leapto();}
var expdate = new Date();var visits;
expdate.setTime(expdate.getTime() + (24 * 60 * 60 * 1000 * 365));
if(!(visits = GetCookie("visits"))) visits = 0;
visits++; SetCookie("visits", visits, expdate, "/", null, false);
/* Modifiez le texte ci-dessous (avec du code html si vous voulez) et
rajoutez des ligne supplémentaires si vous le désirez
(uniquement la dernière ligne doit avoir le symbole ">=") */
document.write("<B>Vous avez visité cette page "+visits+" fois.</B><BR>");
if(visits == 1) document.write("<FONT COLOR=F00F00 ><B>1er message</B></FONT>");
if(visits == 2) document.write("<FONT COLOR=FF0202 ><B>2eme message</B></FONT>");
if(visits == 3) document.write("<FONT COLOR=0F00F0 ><B>3eme message </B></FONT>");
if(visits == 4) document.write("<FONT COLOR=00FF00 ><B>4eme message </B></FONT>");
if(visits == 5) document.write("<FONT COLOR=00FFFF ><B>5eme message </B></FONT>");
if(visits >= 6) document.write("<FONT COLOR=FFFF00 ><B>dernier message </B></FONT>");
// -->
</Script>
|