	var offsetxpoint=-12;
	var offsetypoint=12;
	var ie=document.all;
	var ns6=document.getElementById && !document.all;
	var enabletip=false;
	var fbd	= new Image();	fbd.src	= "img/help/fbd.gif";
	var fbs	= new Image();	fbs.src	= "img/help/fbs.gif";
	var ftd	= new Image();	ftd.src	= "img/help/ftd.gif";
	var fts	= new Image();	fts.src	= "img/help/fts.gif";
	var help_1_1x1	= new Image();	help_1_1x1.src	= "img/help/help_1_1x1.gif";
	var help_1_1x2	= new Image();	help_1_1x2.src	= "img/help/help_1_1x2.gif";
	var help_1_1x3	= new Image();	help_1_1x3.src	= "img/help/help_1_1x3.gif";
	var help_1_2x1	= new Image();	help_1_2x1.src	= "img/help/help_1_2x1.gif";
	var help_1_2x3	= new Image();	help_1_2x3.src	= "img/help/help_1_2x3.gif";
	var help_1_3x1	= new Image();	help_1_3x1.src	= "img/help/help_1_3x1.gif";
	var help_1_3x2	= new Image();	help_1_3x2.src	= "img/help/help_1_3x2.gif";
	var help_1_3x3	= new Image();	help_1_3x3.src	= "img/help/help_1_3x3.gif";
	
	var helptop =	'<table border="0" cellpadding="0" cellspacing="0">' +
			'<tr><td width="5" height="14"><img name="help_10" src="'+help_1_1x1.src+'" width="5" height="14" border="0"></td>' +
			'<td width="*" height="14" background="'+help_1_1x2.src+'" align="left">' +
			'<img src="blank.gif" width="20" height="1" border="0">' +
			'<img src="'+fts.src+'" name="ftop" border="0">' +
			'<img src="blank.gif" width="20" height="1" border="0"></td>' +
			'<td width="5" height="14"><img name="help_12" src="'+help_1_1x3.src+'" width="5" height="14" border="0"></td></tr>'+
			'<tr><td width="5" height="*" background="'+help_1_2x1.src+'"></td><td width="*" height="*" class="helptxt">';
	var helbottom = '</td><td width="5" height="*" background="'+help_1_2x3.src+'"></td></tr>' +
			'<tr><td width="5" height="14"><img name="help_16" src="'+help_1_3x1.src+'" width="5" height="14" border="0"></td>' +
			'<td width="*" height="14" background="'+help_1_3x2.src+'" align="left"><img src="blank.gif" width="20" height="1" border="0">' +
			'<img src="'+fts.src+'" name="fbot" border="0"><img src="blank.gif" width="20" height="1" border="0"></td>' +
			'<td width="5" height="14"><img name="help_18" src="'+help_1_3x3.src+'" width="5" height="14" border="0"></td></tr></table>';

	if (ie||ns6)
	var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : ""

	function ietruebody(){
		return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
	}
	function ddrivetip(thetext, thewidth){
		if (ns6||ie){
			if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"
			tipobj.innerHTML=helptop+thetext+helbottom;
			enabletip=true;
			return false;
		}		
	}
	var fRunning = 0;

	function positiontip(e){
		if (enabletip){
			var curX=(ns6)?e.pageX : event.x+ietruebody().scrollLeft;
			var curY=(ns6)?e.pageY : event.y+ietruebody().scrollTop;
			var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20
			var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20
			var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000;
			if (rightedge<tipobj.offsetWidth){
				tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px";
				document.images['ftop'].src='img/help/ftd.gif';
				document.images['fbot'].src='img/help/blank.gif';
			}
			else if(curX<leftedge){
					document.images['ftop'].src='img/help/ftd.gif';
					document.images['fbot'].src='img/help/blank.gif';
					tipobj.style.left="5px";
			}
			else{
				tipobj.style.left=curX+offsetxpoint+"px";
				document.images['ftop'].src='img/help/fts.gif';
				document.images['fbot'].src='img/help/blank.gif';
			}
			if(bottomedge<tipobj.offsetHeight){
				tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px";
				document.images['fbot'].src='img/help/fbd.gif';
				document.images['ftop'].src='img/help/blank.gif';
			}
			else			
				tipobj.style.top=curY+offsetypoint+"px";
				tipobj.style.visibility="visible";
		}
	}
	function hideddrivetip(){
		if (ns6||ie){
			enabletip=false;
			tipobj.style.visibility="hidden";
			tipobj.style.left="-1000px";
			tipobj.style.backgroundColor='';
			tipobj.style.width='';
		}				
		fRunning = 0;
	}
	document.onmousemove=positiontip;