

function confirmar(msg)
{
	if(confirm(msg)) {
		return true;
	}
	
	return false;
}



if(navigator.appName != "Microsoft Internet Explorer")
{
	// Simular um click em um link em navegadores Netscape
	HTMLElement.prototype.click = function() {

	var evt = this.ownerDocument.createEvent('MouseEvents');
	evt.initMouseEvent('click', true, true, this.ownerDocument.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);

	this.dispatchEvent(evt);

	}
}
