﻿function showUpload(path) {
    var w = window.open('UploadFile.aspx?Path=' + path, 'FileUpload', 'width=450,height=300', true);
    w.focus();
}

function ftpUploadClick() {
    /*
    var s = document.getElementsByTagName('input');
    for (var i = 0; i < s.length; i++) {
        if (s[i].type == 'button' || s[i].type == 'submit'){
            //s[i].disabled = true;
            s[i].style.display = 'none';
        } else if (s[i].type == 'file') {
            s[i].style.display = 'none';
            document.getElementById(s[i].id + 'msg').style.display = 'inline';
        }
    };
    */
    document.getElementsByTagName('table')[0].style.display = 'none';
    document.getElementById('file1msg').style.display = 'block';
    //document.getElementsByTagName('textarea')[0].style.display = 'none';
    //document.getElementById('tdMsg').innerHTML = '';
}
function onlyAllowIE7AndUp() {
    if (navigator.userAgent.indexOf('MSIE 6') >=0 || navigator.userAgent.indexOf('MSIE 5') >= 0) {
        alert('Internet Explorer 5 & 6 have problems downloading directly from FTP.\nPlease right-click this link and select "Copy Shortcut" and paste it into an FTP client\nsuch as WS_FTP, CuteFTP or FileZilla.\n\nAlternatively you may visit this page in Internet 7 or greater, Firefox or Safari.');
        return false;
    }
    return true;
}
