﻿//Không cho ch&#7885;n v&#259;n b&#7843;n (select text)
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
}
//Không cho b&#7845;m chu&#7897;t ph&#7843;i (no right-click)
function click() {
if (event.button==2) {
alert('Cam on quy vi da ghe tham, xin Chua chuc lanh cho quy vi!')
}
}
document.onmousedown=click
//
