
function showmore(id)
{
    var clickable = document.getElementById("morelink" + id);
    var cities = document.getElementById("morecont" + id);
    
    clickable.style.display = "none";
    cities.style.display = "block";
}

function hidemore(id)
{
    var clickable = document.getElementById("morelink" + id);
    var cities = document.getElementById("morecont" + id);
    
    clickable.style.display = "block";
    cities.style.display = "none";
}

function setfs()
{
    var c = document.getElementById("selectcounty");
    var t = document.getElementById("selecttreatment");
    var s = document.getElementById("selectsortby");
    
    window.location = "./?c=" + c.value + "&t=" + t.value + "&s=" + s.value;
}

function highlightprow(id)
{
    document.getElementById("prow" + id).bgColor = "#EFEFEF";
    document.getElementById("prow" + id + ".1").bgColor = "#EFEFEF";
}

function unlightprow(id)
{
    document.getElementById("prow" + id).bgColor = "#FFFFFF";
    document.getElementById("prow" + id + ".1").bgColor = "#FFFFFF";
}

