<!--
function showMo(id,x,y,tf) {
if (tf == true) {
id.style.display = "block"
id.style.right = x + "px"
id.style.top = y + "px"
id.style.position = "absolute"}
if (tf == false) {
id.style.display = "none"
}
}

//-->

