1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
|
<script type="text/javascript" language="JavaScript1.2">
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script> |