//Function : Centre
//Date : 02.09.2002
//Description :AntiCopie

function pressed(e)
{
if(document.all)
 {
if(event.button==2){alert('');}
 }
else
 {
if(e.which==3)alert('');
if(e.target==""||String(e.target).charAt(0)=="[")
return false;
else
return true;
 }
}
function ss(){return false;}
document.onmousedown=pressed;
sx=0;sy=0;
function md(e){sx=e.screenX;sy=e.screenY;}
function mu(e){sx=0;sy=0;}
function mm(e)
{
if(!sx&&!sy)return;
 tsx=e.screenX-sx;tsy=e.screenY-sy;
if(tsx*tsx+tsy*tsy>100)
 {
  document.location=document.location;
 }
}
function kd(e){if(e.keyCode==17)document.location=document.location;}
if(window.opera!=null)
{
 document.onmousedown=md;
 document.onmouseup=mu;
 document.onmousemove=mm;
 document.onkeydown=kd;
}
document.onselectstart=ss;
if(!document.all)document.captureEvents(Event.MOUSEDOWN);
function dec(SS)
{
 tmp="";
 tmp1="";
for(i in SS)
 {
  S=SS[i];
  tmp2="";
for(i=0;i<S.length;i+=4)
   tmp2+=(tmp2==""?"":",")+"(0x"+S.substr(i,4)+">>5)&0xFF";
  tmp1+="tmp+=String.fromCharCode("+tmp2+");";
 }
 eval(tmp1);
 document.write(tmp);
}
