function windowOpener(windowHeight, windowWidth, windowName, windowUri)
{
    var centerWidth = (window.screen.width - windowWidth) / 2;
    var centerHeight = (window.screen.height - windowHeight) / 2;

    newWindow = window.open(windowUri, windowName, 'resizable=0,width=' + windowWidth +
        ',height=' + windowHeight +
        ',left=' + centerWidth +
        ',top=' + centerHeight);

    newWindow.focus();
    return newWindow.name;
}
    
(function($){    
    $(document).ready(function() {
        $("a.cinco, div.boxFtp p a[href=#]").click(function(){
            windowOpener(200,370,"FTP",_template + "/ftp.php");
        });
    });

})(jQuery);
