// Javascript Popup Help Box

var help_timer;

function fOpenHelp(element, text){	
	position = fFindObjectPosition(element);
	x = position[0] + 12;
	y = position[1] + 12;
	help_timer = window.setTimeout('fCreateHelpPopup(\''+text+'\', '+x+', '+y+')', 500);
}

function fCreateHelpPopup(text, x, y){
	window.clearTimeout(help_timer);	
	document.getElementById('help_popup').innerHTML = text;
	document.getElementById('help_popup').style.left = x + 'px';
	document.getElementById('help_popup').style.top = y + 'px';
	document.getElementById('help_popup').style.display = 'block';
}

function fCloseHelp(){
	window.clearTimeout(help_timer);	
	document.getElementById('help_popup').style.display = 'none';
}
