var netribeRenderer = function(workingDate, cell) {		cell.innerHTML = '<a href="#" class="' + this.Style.CSS_CELL_SELECTOR + '">' + this.buildDayLabel(workingDate) + "</a>";		YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_HIGHLIGHT3);		YAHOO.util.Dom.addClass(cell, this.Style.CSS_CELL_SELECTABLE);		// DOC: NON APPLICA GLI ALTRI RENDERER		return YAHOO.widget.Calendar.STOP_RENDER;		//return	}	function netribeHandler(type,args,obj) {		var selected = args[0];		var selDate = this.toDate(selected[0]);		var showDay = selDate.getDate();		if (showDay < 10)		{			showDay = "0" + showDay;		}		var showMonth = selDate.getMonth() + 1;		if (showMonth < 10)		{			showMonth = "0" + showMonth;		}		var showYear = selDate.getFullYear();		var stringData = showYear + "-" + showMonth + "-" + showDay ;		window.location = "Eventi.jsp?year=" + showYear + "&month=" + showMonth + "&day=" + showDay;	}
