//JavaScript BY ANDERSON VASCONCELLOS - andersonvasconcellos@ieg.com.br

function ObjParaCopia(id, msg)
{
	this.id = id;
	this.msg = msg;
	this.Ativar = function() {
		if(document.layers) document.captureEvents(Event.Click);
		document.onmousedown = new Function('e', '{' + this.id + '.Botao(e,"' + this.id + '"); }');
	}
	this.Botao = function(e) {
		var b = document.all ? window.event.button : e.which;
		if(b > 1) {
			alert(this.msg);
			return false;
		}
		return true;
	}
	this.Ativar();
}

