/**
/ This controller is responsable to show system's messages.
/ @Package: FireBrick
/ @Author: upa
/ @Last modify: February 22, 2008
/ @Charset: utf-8
/*/

function Messenger() {
	// Constructor
	
		// Properties
	
	// End of constructor
	
	// Methods
	
	/**
	/ Shows a message.
	/*/
	this.show = function(message) {
		window.alert(message);	
	};
	
	/**
	/ Hides a message.
	/*/
	this.hide = function() {};
	
	// End of methods
}
