function popMessage(e, divName){    
	xPos=0;yPos=0;
	xPos = (e.pageX) ? e.pageX : e.clientX+document.body.scrollLeft;
	yPos = (e.pageY) ? e.pageY : e.clientY+document.body.scrollTop;
	nDiv = document.getElementById(divName);
	nDiv.style.position = "absolute";
	nDiv.style.display = "block";
	nDiv.style.visibility = "visible";
	nDiv.style.left = xPos+"px";
	nDiv.style.top = yPos+"px";
	nDiv.style.zIndex = 99;
}

function killMessage(divName){    
	nDiv = document.getElementById(divName);
	nDiv.style.display = "none";
	nDiv.style.visibility = "hidden";
	nDiv.style.left = "0px";
	nDiv.style.top = "0px";
	nDiv.style.zIndex = 99;
}
