//---IE/NS
function right(e)

{

/*

if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))   return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
	//alert("歡迎使用本軟體");
	return false;}
return true;}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
//---IE
if (window.print)
document.oncontextmenu=cancelm;
function cancelm(){return false;}

//---Disable Image
function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
return false;
}
}
}
if (document.layers) {
if (e.which == 3) {
return false;
}
}

*/

}




