function showSpecialDiv(oThis)
{
iLeftOffset = 2
iTopOffset = 1
oLeftThis = oThis

iTop = oThis.offsetHeight
//get the top
do {
	iTop += oThis.offsetTop
	oThis = oThis.offsetParent
	} while (oThis.offsetParent.tagName != "BODY")

//get the left
iLeft = 0
oThis = oLeftThis
do {
	iLeft += oThis.offsetLeft
	oThis = oThis.offsetParent
	} while (oThis.offsetParent.tagName != "BODY")

oDiv = getElement("specials")
iLeft += iTopOffset
iTop += iTopOffset
oDiv.style.top = iTop
oDiv.style.left = iLeft

oElem = getElement("specials")
oElem.style.visibility = "visible"
if (isIE == 1)
	{
		oElem.style.display = "block"
	} else {
		oElem.style.display = "table"
	}
}

function checkOver(iTime)
{
	setTimeout(hideSpecialDiv,iTime) // this works for Mozilla
}

function hideSpecialDiv()
{
if (sDropID != "specials")
	getElement("specials").style.visibility = "hidden"
}

function rollcall(oThis,iCheck)
{
if (iCheck == 1)
	{
		sDropID = oThis.getAttribute("id")
	} else {
		sDropID = ""
		checkOver(300)
	}	
}