// JavaScript Document


function ShowDiv(thisDiv,thisHeight,thiswidth,thisMouse) 
{
	thisDiv.style.visibility="visible";
	
	if (thisMouse=="OnClick")
	{
		obj=window.event.srcElement;
		objLeft   = obj.offsetLeft;
		objTop    = obj.offsetTop;
		objParent = obj.offsetParent;
		while (objParent.tagName.toUpperCase() != "BODY")
		{
			objLeft  += objParent.offsetLeft;
			objTop   += objParent.offsetTop;
			objParent = objParent.offsetParent;
		}
		thisDiv.style.left=objLeft+thiswidth;
		thisDiv.style.top=objTop+thisHeight;
	}

}

function HiddenDiv(thisDiv)
{
    thisDiv.style.visibility="hidden";
}

function showHeight()
{
obj=window.event.srcElement;


}

