﻿/*______________________________________

mouse Right Click Stop program
 _____________________________________*/

wold=window.onload;
window.onload=brc;

function brc() {
	if (document.getElementById && !window.opera) {
		eles=document.getElementsByTagName('body');
		if (!document.all) {
			eles[0].setAttribute('oncontextmenu','return(brc2()); ');
		} else {
			eles[0].oncontextmenu=brc2;
		}
	}
	if (wold) wold();
}

function brc2() {
	return(false);
}


