function BringDay(obj, id_td)
		{
			var ajax = new XHConn();
			if (!ajax)
				{
					alert("XMLHTTP nu este disponibil. Incercati un browser mai nou.");
				}
			
			var Done = function (response)
				{
					if (response.responseText == "fail")
						{
							alert("Parametru incorect");
						}
					else
						{
							document.getElementById(id_td).innerHTML = response.responseText;
						}
				};
				
			ajax.connect("http://www.adika.ro/includes/calendar/ajax/get_day.php", "POST", "data=" + obj.value, Done);
		}

