
//// empecher la selection du texte sur la page
 
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

//// pas de clik droit


function NoError(){return true;}
window.onerror=NoError;
 
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu() {
    event.cancelBubble = true
    event.returnValue = false;
    return false;
}
 
function norightclick(e) {
    if (window.Event) {
    if (e.which == 2 || e.which == 3)
    return false;
    } 
else
    if (event.button == 2 || event.button == 3) { 
    event.cancelBubble = true
    event.returnValue = false;
    return false;
    }
}
 
document.oncontextmenu = nocontextmenu; 
document.onmousedown = norightclick;





//// text barre de taches

var text  = "ONLINE CASINO - VIDEO POKER - SPORTS BETTING - LOTTO KENO BINGO"
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();



//// popup lien condtions legales

function pop(url, target, largeur, hauteur) {
  var nw = window.open(url, target,'location=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=' + largeur + ',height=' + hauteur );
  xpos = (screen.width  - largeur)/2;
  ypos = (screen.height - hauteur)/2;
  nw.moveTo(parseInt(xpos), parseInt(ypos));
  return false;
}