function showWMTT(id) {
	
	wmtt = document.getElementById(id);
	if (wmtt != null) 
	{
		if (id == 1 || id == 2)
		{
		wmtt.style.right = "100px";
		wmtt.style.top 	= "100px";
		}
		if (id == 3 || id == 4 || id == 5)
		{
		wmtt.style.left = "100px";
		wmtt.style.top 	= "100px";
		}
	}
	wmtt.style.display = "block"
}
function hideWMTT() {
	wmtt.style.display = "none";
}
