// UTILIZAÇÃO DE INPUTS BUTTON + TEXT SIMULANDO INPUT FILE
// Restrição: apenas IE


function abrir() {
    var arquivo = document.getElementById("arquivo");
    arquivo.click();
}

function atualizar(campoDe, idPara) {
	
    var fileName = document.getElementById(idPara);
    fileName.value = campoDe.value;
}


function validarBrowser() {
    //if(navigator.appName == "Netscape") {
	if(true) {
	  document.getElementById("anexar_arquivo").style.display = "none";
	  document.getElementById("input_file").style.display = "block";
    }
}
