function addNewInput(){ var line = document.getElementById('uploadOption'); var newElement = document.createElement('TR'); var newElement2 = document.createElement('TD'); var newElement3 = document.createElement('TD'); newElement2.innerHTML = ''; newElement3.innerHTML = ''; newElement.appendChild(newElement2); newElement.appendChild(newElement3); line.parentNode.appendChild(newElement); document.getElementById('show_upload_boxes').value +=1; } function sendFiles(){ cExecuteForm(document.getElementById('form_up'),handler_upload); document.getElementById('button_up').style.visibility = "hidden"; var line = document.getElementById('uploadOption'); line.parentNode.innerHTML = ""; } function handler_upload(data){ window.location = "/index.php?menuaction=filemanager.uifilemanager.index"; }