// JavaScript Document


function openKCFinder_singleFile(field,instance,lang) {


    window.KCFinder = {
        callBack: function(url) {
            window.KCFinder = null;
			etalon = instance;
            field.value = url.substring(etalon.length,url.length);
        }
    };
    window.open('./applications/kcfinder251/browse.php?lang='+lang, 'kcfinder_textbox',
        'status=0, toolbar=0, location=0, menubar=0, directories=0, ' +
        'resizable=1, scrollbars=0, width=800, height=600'
    );

}

function openKCFinder_singleFile_com(field,instance,lang) {


    window.KCFinder = {
        callBack: function(url) {
            window.KCFinder = null;
			etalon = instance;
            field.value = url;
        }
    };
    window.open('./applications/kcfinder251/browse.php?lang='+lang+'&fichiers=1', 'kcfinder_textbox',
        'status=0, toolbar=0, location=0, menubar=0, directories=0, ' +
        'resizable=1, scrollbars=0, width=800, height=600'
    );

}

