В этом же копировать нельзя а писать , оставлять комы и т.д моно
<script language=JavaScript>
<!--
var message="Правая кнопка мыши отключена!";
function click(e) {
if (document.all) { // IE
if (event.button == 2) { // Чтобы отключить левую кнопку поставьте цифру 1
alert(message); // чтобы отключить среднюю кнопку поставьте цифру 1
return false;}
}
if (document.layers) { // NC
if (e.which == 3) {
alert(message);
return false;}
}
}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);}
document.onmousedown=click;
document.oncontextmenu=function(e){return false};
//-->
</script>
<script language="JavaScript1.2">
function disabletextselect(i){
return false
}
function renabletextselect(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6+
if (window.sidebar){
document.onmousedown=disabletextselect
document.onclick=renabletextselect
}
</script>