function setAction(action){
    getForm().action = action + ".do";
}

function getForm(){
    return document.getElementById("actionForm");
}

function deleteIndex(index,field,action){
    document.getElementById(field).value = index;
    setAction(action);
    getForm().submit();
}
