// JavaScript Document

var immagine = 'icon.png';
var code = '';
if (document.all) {
	code += '<SPAN id="pointer" STYLE="height: 30px; width: 30px; position: absolute; left: -100">';
	code += '<IMG id="pointerImg" NAME="pointerImg" SRC="' + immagine + '" BORDER=0>';
	code += '</SPAN>';
} else {
	code += '<LAYER ID="pointer" position="absolute" left="-100">';
	code += '<IMG ID="pointerImg" SRC="' + immagine + '" BORDER=0>';
	code += '</LAYER>';
}
document.write(code);
if(document.layers) document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = coordinate;
function coordinate(e) {

if (document.layers) {
	document.layers.pointer.left = e.pageX + 8;
	document.layers.pointer.top = e.pageY + 18;
}
if (document.all) {
	pointer.style.left = event.clientX + document.body.scrollLeft + 8;
	pointer.style.top = event.clientY + document.body.scrollTop + 18;
}
return true;
}