//restituisce una reference al tag
function getTagReferenceById(TagId){
	
	return document.getElementById(TagId);
	
}

//visualizza un tag
function showTag(TagRef){
	
	try{
		TagRef.style.display = "inline";
	}catch(ex){
	
	}
	
}

//nasconde un tag
function hideTag(TagRef){
	
	try{
		TagRef.style.display = "none";
	}catch(ex){
	
	}
	
}