//Nom de fichier aléatoire dans la barre de statut
function lien()
{
var txt=new Array();
txt[1]='Cliquez-ici!';
txt[2]='Connectez-vous à XGratos!';
txt[3]='La nouvelle porte vers le X!';
txt[4]='Viens chercher ton bonheur sur XGratos!';

now=new Date();
num=(now.getSeconds())%4;
num=num+1;

window.status=txt[num];
}

function vide(){window.status="";}