//-- This is the javascript module for module_members_online.php

// This is an periodical update checkes per 1 second if there are any changes
// is not that after 2 secs. if not then after 4 secs. ect.
var onlineupdater = new Ajax.PeriodicalUpdater('members_online_body', '/modules/module_online.php',
  {
    method: 'post',parameters:"online_is_ajax=true",
    frequency: 1,
    decay: 2
  });
//-- stop the updater untill the page is loaded.
onlineupdater.stop();
