function showtooltip(object){document.getElementById(object).style.visibility='visible';}
function HideToolTip(object){document.getElementById(object).style.visibility='hidden';}
var events_tt = {};
events_tt.gonext=function(date){
	groupURL=APPLICATION_URL+"event/eventsCalendar/"+date+"?ajaxcall=true";
	handleSuccess=function(o){
		getElementId("showEventsCalDiv").innerHTML=o.responseText;
	}
callback={success:handleSuccess,failure:this.handleFailure}
YAHOO.util.Connect.asyncRequest("GET",groupURL,callback)
}

