var toolTipDiv = null;

function showToolTip(leftPos, topPos, msg){
	createToolTipDiv();

	toolTipDiv.style.position = 'absolute';
	toolTipDiv.style.display = 'block';
	toolTipDiv.style.left = leftPos + 'px';
	toolTipDiv.style.top = topPos + 'px';
	toolTipDiv.style.zIndex = 100;
	toolTipDiv.style.backgroundColor = '#edeceb';

	toolTipDiv.innerHTML = msg;
}

function hideToolTip(){
	createToolTipDiv();
	toolTipDiv.style.display = 'none';
}

function createToolTipDiv(){
	if(toolTipDiv == null){
		toolTipDiv = document.createElement('div');
		toolTipDiv.setAttribute('id','toolTipDiv');
		document.body.appendChild(toolTipDiv);
		toolTipDiv.style.paddingLeft = '4px';
		toolTipDiv.style.paddingRight = '4px';
		toolTipDiv.style.paddingTop = '2px';
		toolTipDiv.style.paddingBottom = '2px';
	}
}