/**************************************************
 * online.js
 * 01.01.2009
 * www.mnogo-softa.net.ru
 **************************************************
by KuRsK
 **************************************************/

function tick(){
    var var_upload,a_upload,a_upload_disp;
    var var_download,a_download,a_download_disp;
    var var_users,a_users,a_users_disp;
    var var_local,a_local,a_local_disp;
    var var_other,a_other,a_other_disp;
    var idt;
    a_upload        = 421;
    a_upload_disp   = 30;
    a_download      = 1350;
    a_download_disp = 30;
    a_users         = 1781;
    a_users_disp    = 30;
    a_local         = 270;
    a_local_disp    = 6;
    a_other         = 1040;
    a_other_disp    = 10;

    var_upload   = a_upload + Math.floor(a_upload_disp * Math.random());
    var_download = a_download + Math.floor(a_download_disp * Math.random());
    var_users    = a_users + Math.floor(a_users_disp * Math.random());
    var_local    = a_local + Math.floor(a_local_disp * Math.random());
    var_other    = a_other + Math.floor(a_other_disp * Math.random());
    document.getElementById('users').innerHTML    = var_users;
    document.getElementById('upload').innerHTML   = var_upload;
    document.getElementById('download').innerHTML = var_download;
    document.getElementById('local').innerHTML = var_local;
    document.getElementById('other').innerHTML = var_other;
    window.setTimeout('tick()',6000);
}
tick();