function getOffsetLeft(id)

{

	oElement = document.getElementById(id)

	var iReturnValue = 0;

	while( oElement != null )

	{

		iReturnValue += oElement.offsetLeft;

		oElement = oElement.offsetParent;

	}

	return iReturnValue;

}



function getOffsetTop(id)

{

	oElement = document.getElementById(id)

	var iReturnValue = 0;

	while( oElement != null )

	{

		iReturnValue += oElement.offsetTop;

		oElement = oElement.offsetParent;

	}

	return iReturnValue;

} 

function donationFloater()
{
	floater = document.getElementById('donationFloater')
	leftPx = new String((getOffsetLeft('midBot')+750) + 'px')
	topPx  = new String((getOffsetTop('midBot')-17) + 'px')
	
	floater.style.left = leftPx
	floater.style.top = topPx
	floater.style.visibility ='visible'
	
}
