function areYouSure(text)
{
     return confirm(text);
}

function toogleCatagory(catID)
{
    var thisCat = document.getElementById("category"+catID);
    var thisCatLink = document.getElementById("categorylink"+catID);
    if(thisCat.style.display=="none")
    {
        thisCat.style.display = "block";
	thisCatLink.style.backgroundPosition = "0 -38px";
    } else
    {
	thisCatLink.style.backgroundPosition = "0 4px";
        thisCat.style.display = "none";
    }
}
