function togglePopBox(date) {
	/*xmlHttp4=GetXmlHttpObject();
	xmlHttp4.onreadystatechange=function()
	{
		if(xmlHttp4.readyState==4)
		{
			var ajaxClick=xmlHttp4.responseText;
			document.getElementById("times").innerHTML=ajaxClick;
			document.getElementById("times").style.visibility = "visible";
		}
	}
	var url='ajax_processCalendarDate.php?date2='+date;
	xmlHttp4.open("GET",url,true);
	// the only way not to cache results in IE
	xmlHttp4.setRequestHeader( "If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT" );
	xmlHttp4.send(null);/**/
	
	jQuery.ajax({ 
		method: "get",url: "./mysite/code/ajax/getTimes.php",data: 'date=' + date, 
		cache: false,
		success: function(html){ //so, if data is retrieved, store it in html
			jQuery('#times').html(html);
			jQuery('#times').show("slow");
		} 
	 }); //close $.ajax(
	 //$('#times').load('mysite/code/ajax/getTimes.php?date=' + date);
	 //$('#times').show("slow");
	
}