


function doHelp(element,msg,location) {
	return;
	var help = document.getElementById('helpDiv');
	help.innerHTML = "";
	// help.style.color = '#0000FF';
	
	var objItem = element;
	var objParent = null;
	var intX = 0;
	var intY = 0;
	do
	 { 
	  intX += objItem.offsetLeft
	  intY += objItem.offsetTop
	  objParent = objItem.offsetParent.tagName
	  objItem = objItem.offsetParent
	 }while(objParent != 'BODY')
	
	help.style.top = intY;	
	var rigth_location = 100;//;intX;

	if(isNaN(location))
		rigth_location = rigth_location + 365;
	else
		rigth_location = rigth_location + location;

	
	help.style.right = rigth_location;
	help.style.visibility ='visible';	
	help.innerHTML = msg;

}


function hideHelp(){
	var help = document.getElementById('helpDiv');
	help.style.visibility ='hidden';	
} // hideHelp


function viewHelp(element){
	var helpDiv = document.getElementById('helpDiv');
    helpDiv.innerHTML = '';
	helpDiv.style.visibility ='visible';	
}


