﻿function title_show(objID){
var targ=document.getElementById("m"+objID);
var xPos = targ.offsetLeft;var yPos = targ.offsetTop;
	while( targ = targ.offsetParent ){
		yPos += targ.offsetTop;
		xPos += targ.offsetLeft;
	}div_show("Layer"+objID,yPos,xPos);
}
function div_show(title_temp,yPos,xPos){var targ = document.getElementById(title_temp);var lefts = document.getElementById('body').scrollLeft;var tops = document.getElementById('body').scrollTop+26; targ.style.display ="block";targ.style.left= lefts +xPos+'px';targ.style.top = tops +yPos+'px';}
function title_hide(title_temp){var targ=document.getElementById(title_temp);targ.style.display="none"}

