function getHintleftPos(inputObj)
			{
			var objWedth=parseInt(remove(inputObj.style.width,'px'));			
			var returnValue = inputObj.offsetLeft;
			while((inputObj = inputObj.offsetParent) != null)returnValue += inputObj.offsetLeft;			
			return returnValue+objWedth;
			}
		function getHintTopPos(inputObj)
			{			
			var returnValue = inputObj.offsetTop + inputObj.offsetHeight;
			while((inputObj = inputObj.offsetParent) != null)returnValue += inputObj.offsetTop;
			return returnValue-30;
		}
		function visibleHelp(MyCtrl,strHelp,hintHeight,hintWidth)
		{
	
			var theDiv=document.getElementById('MyHelp');
			if(theDiv==null)
				{
					theDiv=document.createElement('Div');
					theDiv.id='MyHelp';
					theDiv.style.position='absolute';
					theDiv.style.zIndex=999999;
					document.Form1.appendChild(theDiv);
				}
				theDiv.style.visibility='';
				theDiv.innerHTML="<table cellspacing='0' cellpadding='0' width='"+hintWidth+"'>"
								+"<TR><TD width='20'></TD><TD width='36'></TD>"
								+"<TD width='20'><IMG src='images/HintImg/rounded_corner1.gif'></TD>"
								+"<TD bgcolor='#000066'><!-- Blank top section --></TD><TD><IMG src='images/HintImg/rounded_corner2.gif'></TD></TR>"
								+"<TR  class='hintTableArrow'><TD height='"+hintHeight+"' bgcolor='#000066'></TD><TD width='20'background='images/HintImg/arrow.gif' vAlign='middle'"
								+"align='left'>&nbsp;&nbsp;&nbsp;&nbsp;</TD><TD height='"+hintHeight+"' bgcolor='#000066'><!-- Blank left section --></TD>"
								+"<TD width='100%' height='"+hintHeight+"' rowSpan='1' colSpan='1'  class='hintTable' bgcolor='#000066'>"+strHelp/*Your Text Here*/+"</TD><TD height='"+hintHeight+"' bgcolor='#000066'><!--Blank right section --></TD>"
								+"</TR><TR><TD width='20' bgcolor='#000066'></TD><TD width='36' rowSpan='1' colSpan='1'></TD>"
								+"<TD width='20'><IMG src='images/HintImg/rounded_corner3.gif'></TD><TD bgcolor='#000066'><!--Blank bottom section --></TD>"
								+"<TD><IMG src='images/HintImg/rounded_corner4.gif'></TD></TR></table>";//Html Table Code
                theDiv.style.visibility='';
               	theDiv.style.left =getHintleftPos(MyCtrl) + 'px';
               	theDiv.style.top = getHintTopPos(MyCtrl) + 'px';
		}
		function hideHelp()
		{
			document.getElementById('MyHelp').style.visibility='hidden';
		}
		
		function remove(s, t) {
			/*
			**  Remove all occurrences of a token in a string
			**    s  string to be processed
			**    t  token to be removed
			**  returns new string
			*/
			i = s.indexOf(t);
			r = "";
			if (i == -1) return s;
			r += s.substring(0,i) + remove(s.substring(i + t.length), t);
			return r;
			}	