function setLocation(url)
{
    window.location.href = url;
}

function selectAll(targetId)
{
    if($(targetId))
    {
        var descandants = $(targetId).descendants();

        for(var i = 0; i < descandants.length; i++)
        {
            if(descandants[i].type == "checkbox")
            {
                descandants[i].checked = true;
            }
        }
    }
}

function deselectAll(targetId)
{
    if($(targetId))
    {
        var descandants = $(targetId).descendants();

        for(var i = 0; i < descandants.length; i++)
        {
            if(descandants[i].type == "checkbox")
            {
                descandants[i].checked = false;
            }
        }
    }
}

function emptyInput(inputValue, inputId){
    if($(inputId).value == inputValue){
       $(inputId).value = "";
    }
}
