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