

//// text barre de taches

var text  = "Top classement des sites de jeux video mobiles"
var speed = 200
var x = 0
function bb()
{
var a=text.substring(0,x)
var b=text.substring(x,x+1).toUpperCase()
var c=text.substring(x+1,text.length)
window.status = a + b + c
if (x == text.length)
{
x=0
}
else
{
x++
}
setTimeout("bb()",speed)
}
bb();


//// pas de clik droit


var popup="© 2004 all right reserved"; function noway(go) { if (document.all) { if (event.button == 2) { alert(popup); return false; } } if (document.layers) { if (go.which == 3) { alert(popup); return false; } } } if (document.layers) { document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=noway; 


