
document.cookie = 'testjs=1; path=/';

function assocArrayCount(arr) {
	var result = 0;

	for (var i in arr)
		if (arr[i] != null)
			result++;
	
	return result;
}

function doTooltip(e, msg) {
  if ( typeof Tooltip == 'undefined' || !Tooltip.ready ) return;
  Tooltip.show(e, msg);
}

function hideTip() {
  if ( typeof Tooltip == 'undefined' || !Tooltip.ready ) return;
  Tooltip.hide();
}
