function Evento(tipo,azione) {
	this.tipo=tipo;
	this.azione=azione;
}

Evento.prototype.toString=function (){
	return " " + this.tipo + "=\"" +this.azione + "\" ";
}

