//Customize:ghidra (ghidra@fang.or.jp)
var inform;
function Mo_Rc(mo_r) {
 if (document.all) {
     if (event.button == 2) {
	 inform = confirm(" •Â‚¶‚é (close) ?")
         if (inform == true) {
	     window.close()
         }
         return false;
     }
 }
 if (document.layers) {
     if (mo_r.which == 3) {
         inform = confirm(" •Â‚¶‚é (close) ?")
         if (inform == true) {
	     window.close()
         }
         return false;
     }
 }
}
if (document.layers) {
    document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=Mo_Rc;
