var Utils = new Class({

	initialize:function(){},
	
	//riporta un messaggio in un div
	report:function(message,el,pos,col){
		var c = $chk(col) ? col : '#000000';
		var p = $chk(pos) ? pos : 'bottom';
		var d = $chk(el) ? $(el) : $(document.body)
		var box = new Element('div');
		box.inject(d,p);
		box.setStyle('color',c);
		box.appendText(message);
	}

});//fine classe
