//-----------------------------------------------------//	uiPanel//-----------------------------------------------------var uiPanel = new objUiPanel();function objUiPanel(argId){	this.tagId = ((argId == null) ? 'uiPanel' : argId);		}objUiPanel.prototype.print=function (data){	var elm = document.getElementById(this.tagId);	if(elm != null) {		elm.innerHTML = data;	}}//-----------------------------------------------------//	objConsole//-----------------------------------------------------var console = new objConsole();var userConsole = new objConsole('userConsole');var modalMsgBox = new objConsole('modalMsgBox');function objConsole(argId){	this.tagId = ((argId == null) ? 'console' : argId);		}objConsole.prototype.print=function (data){	var elm = document.getElementById(this.tagId);	if(elm != null) {		var newline = document.createElement("div");		elm.appendChild(newline);		var txt = document.createTextNode(data);		newline.appendChild(txt);			}}objConsole.prototype.clear=function (){	var elm = document.getElementById(this.tagId); 	if(elm != null) {			elm.innerHTML = "";	}}objConsole.prototype.hide=function (){		var elm = document.getElementById(this.tagId); 		if(elm != null) {		elm.style.display = "none";		elm.innerHTML = "";	}}objConsole.prototype.show=function (){		var elm = document.getElementById(this.tagId); 	if(elm != null) {			if(this.tagId=="modalMsgBox") this.addCloseButton();		elm.style.display = "block";	}}objConsole.prototype.addCloseButton=function (){		var elm = document.getElementById(this.tagId); 	if(elm != null) {			elm.innerHTML = elm.innerHTML + "<div id=\"closeButton\" onclick=\"modalMsgBox.hide();\">chiudi</div>";			}}