// JavaScript Document
function monta(elemento)
{
	mouse_x = window.event.x;
	mouse_y = window.event.y;
	
	document.getElementById(elemento).style.display = '';
	document.getElementById(elemento).style.position  = 'absolute';
	document.getElementById(elemento).style.left = mouse_x + 8;
	document.getElementById(elemento).style.top = mouse_y + 5;
}
function mostra(elemento1, elemento2)
{
	document.getElementById(elemento2).onmousemove = function(){
		monta(elemento1);
	}
}
function apaga(elemento)
{
	document.getElementById(elemento).style.display = 'none';
}

