function _initTags()
{
return;
	if(pPars['blogID'])
	{
		var pars = "res_type=sn_blog&res_ancestors=sn_blog:blog:"+pPars['blogID']+"&step=10&no_css=1";
		var req = new Ajax.Request(
				"/cgi-bin/sn_tags/cloud.chm", //tags pubblicati
				{ method: 'get'
				, parameters: pars
				, onLoading: function () {
				}
				, onComplete: SliderTags
				}
		)
	}
}
function SliderTags(transport){
	var HTMLdoc = transport.responseText;
	o=$('tagcloud');
	testo = '';
	o.innerHTML = HTMLdoc;
	try {
	}catch(e)
	{
	}
}
