//// calendar INFO WINDOW
	mouse_x = 0;
	mouse_u = 0;

	function cliw_show(text) {
		if (obj = document.getElementById('cl_info_wnd')) {
			obj.innerHTML = text;
			cliw_move();
			obj.style.display = 'block';
		}
	}
	function cliw_move() {
		if ((obj = document.getElementById('cl_info_wnd')) && (obj.style.display != 'none') && mouse_x && mouse_y) {
			obj.style.top = mouse_y+5;
			obj.style.left = mouse_x+15;
		}
	}
	function cliw_hide() {
		if (obj = document.getElementById('cl_info_wnd')) {
			obj.style.display = 'none';
		}
	}
	function getXY(e) {  
	  mouse_x = (window.Event) ? e.pageX : event.clientX+document.body.scrollLeft;
	  mouse_y = (window.Event) ? e.pageY : event.clientY+document.body.scrollTop;
	}
	function cliw_init() {
	  if (window.Event) {
		if (document.captureEvents){
		  document.captureEvents(Event.MOUSEMOVE);
		} else {
		  window.captureEvents(Event.MOUSEMOVE);
		}
	  }
	  document.onmousemove = getXY;
	}
	cliw_init();
