function showList(p_bShow)
{
    if (p_bShow)
    {
        $("listControl").href = "javascript:showList(false);";
        $("listControl").innerHTML = "Products";
        $("list").style.display = "";
    }
    else
    {
        $("listControl").href = "javascript:showList(true);";
        $("listControl").innerHTML = "Products";
        $("list").style.display = "none";
    }
}

function $(p_elemId)
{
    return document.getElementById(p_elemId);
}
