	// Mensajes.js
	/* 
	*	Dependencias: prototype.js, commons.js
	*	Corre en: ie6, ie7, mz2.0
	*	Versión: 1.0
	*	Autor: rlopez
	*/
	
	PT.crearMensaje();
	
	function Mensajes() {
		
		//Atributos
		this.contenedor = "etiqueta";
		this.timeout = 4000;

		// Métodos
		this.etiqueta = function(msg, tipo) {
			if(tipo == undefined) tipo = "err";
			$(this.contenedor).innerHTML = "<table class='pt-etiqueta_tabla' cellpadding='0' cellspacing='0' onclick='this.style.display=\"none\";'><tr><td class='pt-etiqueta_"+ tipo +"_izq'></td><td class='pt-etiqueta_"+ tipo +"_cent'>" + msg + "</td><td class='pt-etiqueta_"+ tipo +"_der'></td></tr></table>";
			setTimeout("$('" + this.contenedor + "').innerHTML = '&nbsp;';", this.timeout);
		};
		
		this.flotante = function (msg, ctrl, tipo) {
			if(tipo == undefined) tipo = "err";
			var div = $("__msg_" + ctrl.id);			
			if(div == undefined) {
				div = document.createElement("DIV");
				
				div.innerHTML = "<table class='pt-etiqueta_tabla' cellpadding='0' cellspacing='0' onclick='this.style.display=\"none\";'><tr><td colspan='3' class='pt-flotante_"+ tipo +"_punta'></td></tr><tr><td class='pt-etiqueta_"+ tipo +"_izq'></td><td class='pt-etiqueta_"+ tipo +"_cent'>" + msg + "</td><td class='pt-etiqueta_"+ tipo +"_der'></td></tr></table>";
				
				ctrl = $(ctrl);
				var coords = buscarCoordenadas(ctrl);
				div.style.top = (coords.y + 18) + "px";
				div.style.left = (coords.x + 2) + "px";
				coords = null;
						
				div.id = "__msg_" + ctrl.id;
				div.className = "pt-flotante_contenedor";
				document.body.appendChild(div);
			} else {
				div.innerHTML = "<table class='pt-etiqueta_tabla' cellpadding='0' cellspacing='0' onclick='this.style.display=\"none\";'><tr><td colspan='3' class='pt-flotante_"+ tipo +"_punta'></td></tr><tr><td class='pt-etiqueta_"+ tipo +"_izq'></td><td class='pt-etiqueta_"+ tipo +"_cent'>" + msg + "</td><td class='pt-etiqueta_"+ tipo +"_der'></td></tr></table>";
			}
			setTimeout("document.body.removeChild($('" + div.id + "'));", this.timeout);
		};
	}