AcaoLink = function() {
	this.Utils = AcaoLink;
	this.name = 'Ação do Link';
	this.version = '1.0v';
	this._link = '#';
}

var acaoLink = AcaoLink.prototype;

acaoLink.newWindow = function() { window.open(this._link) };
acaoLink.popupA = function() { window.open(this._link,'','screenX=0,screenY=0,Width=600,Height=460,scrollbars=no') };
acaoLink.popupB = function() { window.open(this._link,'','screenX=0,screenY=0,Width=720,Height=480,scrollbars=yes') };
acaoLink.popupC = function() { window.open(this._link,'','screenX=0,screenY=0,Width=600,Height=460,scrollbars=no') };
acaoLink.popupD = function() { window.open(this._link,'','screenX=0,screenY=0,Width=600,Height=460,scrollbars=no') };

acaoLink.exec = function(cmd,link)
{
	//this._link = link;
	//eval("this."+cmd);
	window.location=link;
}