function startUploadByType()
{
    var obj = document.getElementById("uplType");
    var tp = obj.options[obj.selectedIndex].value;
    
    // go to upload page of selected type
    document.location = tp;
}

