//All the Timer Functions
var tmrStart;

function makeDisappear()
{
	document.getElementById("results").style.display="none";
}

function restartTimer()
{
	clearTimeout(tmrStart);
	tmrStart=setTimeout("makeDisappear()", 10000);
}
