function tierMenu2(objMenu,objImage)
{
   if (document.getElementById(objMenu).style.display == "none")
   {
       document.getElementById(objMenu).style.display = "";
       document.getElementById(objImage).src = "/images/icons/arrow-down.gif";
   }
   else
   {
       document.getElementById(objMenu).style.display = "none";
       document.getElementById(objImage).src = "/images/icons/arrow.gif";
   }
}
function hideMessage(id)
{
	setTimeout('document.getElementById("'+id+'").innerHTML = ""',1500)
}
function useful(str)
{
	var url="helpStats.asp?sid=" + Math.random() + str
	var info = str.split("=")
	info = info[1].split("&")
	UID = info[0].split(",")	//For some reason it changes the & to a comma...
	xmlHttp=GetXmlHttpObject(function() { stateChangedUseful(UID); })
	xmlHttp.open("GET", url , true)
	xmlHttp.send(null)
	hideMessage('thankYou')
}
function stateChangedUseful(UID) 
{ 
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
		document.getElementById("useful"+UID).innerHTML=xmlHttp.responseText 
}