<!--

	document.write('<div class="help" id="hpop" onclick="clicked=true;" style="display:none; position:absolute;">&nbsp;</div>');

	var hp = my_getbyid('hpop');

	var clicked = false;

	function pophelp(event,th,text) {
		
		if (!text) return;

		hp.innerHTML = text;

		var x = 0;
		var y = 0;

		var q = th;
		while (q) {
			x += q.offsetLeft;
			y += q.offsetTop;
			q = q.offsetParent;
		}

		y += 15;

		if ( (x + 350) > document.body.clientWidth ) x -= 350;

		hp.style.left = x + 'px';
		hp.style.top = y + 'px';
		hp.style.display = '';

		clicked = true;
	}

	function hidepop() {
		if ( !clicked )	{
			hp.style.display = 'none';
		}
		clicked = false;
	}

	if (typeof document.addEventListener != 'undefined')
		document.addEventListener('click', hidepop, false);
	else if (typeof document.attachEvent != 'undefined')
		document.attachEvent('onclick', hidepop);
	
// -->
