function chgColor(obj, color,borderi)
{
obj.style.backgroundColor = color
obj.borderColor = borderi
}
/////////////////////////////////////////////
var timer
function animPoints()
{
if (obj.innerText!= "......")
	{
	obj.innerText = obj.innerText + "."
	}
else
	obj.innerText = ""
	
timer = setTimeout("animPoints()",70)
}

function stopAnim(points1)
{
clearTimeout(timer)
obj.innerText = ""
}
