
//DISABLE MOUSE DOWN
//This feature prevents users from selecting the text on the webpage.
document.onselectstart=new Function('return false');
function ds(e){return false;
}function ra(){return true;
}document.onmousedown=ds;
document.onclick=ra;
