/***********************************************************************
/* Javascript file and functions for CB Super Activity LIVE UPDATE
* Created By Chris Michaelides aka grVulture
* http://www.axxis.gr - info@axxis.gr
* @copyright ajax.js Copyright (C) 2009  Axxis.gr / All rights reserved.
*	<license>http://www.gnu.org/copyleft/gpl.html GNU/GPL</license>
************************************************************************/
function makeDoubleDelegate(function1, function2) {
    return function() {
        if (function1)
            function1();
        if (function2)
            function2();
    }
}

function live_update()
{
  var brs = navigator.appName;
  if (brs=='Microsoft Internet Explorer') {
    return;
  }
  var php_self = document.getElementById('php_self').value;
  document.getElementById('gr_iframe').src = php_self;
  setTimeout(function(){
  document.getElementById('activity_wrapper').innerHTML = window.frames['gr_iframe'].document.getElementById('activity_wrapper').innerHTML;
  }, 5000);
  setTimeout(live_update, 360000);
}

  setTimeout(live_update, 360000);

// END OF LOADING PAGE FUNCTIONS
// ***************************************************************************************

