// JavaScript Document
	function AbrirVisor(objeto) {
		elemento='div#' + objeto;
		body = document.getElementsByTagName("body")[0];
		this.background = document.createElement("div");
		this.background.setAttribute("id", "bg");
		body.appendChild(this.background);
		this.background.style.opacity = ".6";
		this.background.style.filter = "alpha(opacity=60)";
		jQuery(elemento).fadeIn("fast");
		this.background.style.display = "block";
	}