/*
<!--禁止右鍵另存新檔_-->


document.onmousedown=click;

document.onkeydown=click;

if (document.layers) window.captureEvents(Event.MOUSEDOWN); window.onmousedown=click;

if (document.layers) window.captureEvents(Event.KEYDOWN); window.onkeydown=click;

function click(e){

if (navigator.appName == 'Netscape'){

if (e.which != 1){

alert("Do not make illegal copies");

return false;}}

if (navigator.appName == "Microsoft Internet Explorer"){

if (event.button != 1){

alert("Do not make illegal copies!");

return false;}}}



<!--禁止右鍵另存新檔_結束-->*/
