﻿curPage=1;
document.oncontextmenu = function()
{
return false
}
if(document.layers) 
{
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = function(e)
{
if(e.target==document)
return false;
}
}
else 
{
document.onmousedown = function()
{
return false
}
}


<!--
function click() {
if (event.button==2) {
alert('');
}
}
document.onmousedown=click
function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}
//-->

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
}





texte2 = ' ';
x = texte2.length-0;
place = 0;

function defilStat()
	{
	if (place == texte2.length)
		place = 0;
if (place <= x)
		{
		texteDef = texte2.substring((texte2.length-(x-place)),texte2.length) + texte2.substring(0,place);
		place;
		}
	window.status = texteDef;
	tempo22 = setTimeout('defilStat()', 10);
	}
onload = defilStat;
