
function bodyonload() { 

	window.document.onmousemove = function(e){
		if (e) {
			document.getElementById('jtxt').style.left = e.pageX + 'px';
			document.getElementById('jtxt').style.top = (e.pageY + 15) + 'px';
		} else {
			document.getElementById('jtxt').style.left = (event.x + (document.body.scrollLeft || document.documentElement.scrollLeft)) + 'px';
			document.getElementById('jtxt').style.top = (event.y + (document.body.scrollTop  || document.documentElement.scrollTop) + 15) + 'px';
		}
	}
}

function djp(obj, text) {
	
	document.getElementById('jtxt2').innerHTML = text;
	document.getElementById('jtxt').style.display='';
	obj.style.borderBottom = 'dotted 1px #0000ff';
	obj.style.backgroundColor = '#ffffbb';

}

function ejp(obj) {
	document.getElementById('jtxt').style.display='none';
	obj.style.textDecoration = '';
	obj.style.borderBottom = '';
	obj.style.backgroundColor = '';

}


function dtp(obj, id) {

	document.getElementById(id).style.borderBottom = 'dotted 1px #0000ff';
	document.getElementById(id).style.backgroundColor = '#ffffbb';
	obj.style.borderBottom = 'dotted 1px #0000ff';
	obj.style.backgroundColor = '#ffffbb';

}

function etp(obj, id) {
	
	document.getElementById(id).style.textDecoration = '';
	document.getElementById(id).style.borderBottom = '';
	document.getElementById(id).style.backgroundColor = '';
	obj.style.textDecoration = '';
	obj.style.borderBottom = '';
	obj.style.backgroundColor = '';

}



