function mostrar(nombreCapa)
{ 
	document.getElementById(nombreCapa).style.visibility="visible"; 
}

function ocultar(nombreCapa)
{
	document.getElementById(nombreCapa).style.visibility="hidden";
}

function posicion(e)
{
	z = document.getElementById(nombreCapa);
	z.style.top = e.clientY + 10;
	z.style.left = e.clientX + 10;
}
