﻿function loadfilter_old(vName, vOption) {
    if (theForm.filter.value == '') {
        theForm.filter.value = vName;
        theForm.filtervalue.value = vOption;
    }
    else {
        theForm.filter.value = theForm.filter.value + "," + vName;
        theForm.filtervalue.value = theForm.filtervalue.value + "," + vOption;
    }
    theForm.submit();

}
function loadfilter(vURL) {

    theForm.action = unescape(vURL);
    theForm.submit();
}
function deletefilter(vURL) {

    theForm.action = unescape(vURL);
    theForm.submit();

}
