// HELP FUNCTIONS
function movehelpdiv(evt,helpdivid)
{
	poisitionhelp(evt,helpdivid);
}

function showhelpdiv(helpdivid)
{
	document.getElementById(helpdivid).style.display="block";
}

function hidehelpdiv(helpdivid)
{
	document.getElementById(helpdivid).style.display="none";
}

function poisitionhelp(e,helpdivid) {
		  var posx = 0;
		  var posy = 0;
	//	  if (!e) var e = window.event;
		  if (e.pageX || e.pageY)       
		  {
				posx = e.pageX;
				posy = e.pageY;
		  }
		  else if (e.clientX || e.clientY) {
				posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
				posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
			//	posx = e.clientX + document.body.scrollLeft; //+ document.body.scrollLeft;
			//	posy = e.clientY + document.body.scrollTop; //+ document.body.scrollTop;
		}
	document.getElementById(helpdivid).style.position="absolute";
	document.getElementById(helpdivid).style.top=(posy+9)+"px";
	document.getElementById(helpdivid).style.left=(posx-197)+"px";
}