//Refresh Eltroway Anti-Bot Image.
var antibotCount = 0;

function RefreshImage(ID)
{
	var strSrc = GetElementById(ID).src.split("?");
	GetElementById(ID).src =strSrc[0]+"?&r="+antibotCount;
    antibotCount++;
}


function GetElementById(sID)
{
    try{return document.getElementById(sID)}catch(e){};
}