/**
 * File name:	clock.js
 *
 * Descriptons: function for the clock
 *
 * Author:	Arion Yu	24-Sep-1999	#REF-00002
 *
 * Modification History:
 */

function resetClock() {
  var buttonFrame = parent.parent.frames["ITSCHOOL_BUTTON"];
  if (buttonFrame != null && buttonFrame.resetClock) {
    buttonFrame.resetClock();
  }
}

function setOnlineNum(num){
  var buttonFrame = parent.parent.frames["ITSCHOOL_BUTTON"];
  if (buttonFrame != null && buttonFrame.setOnlineNum) {
    buttonFrame.setOnlineNum(num);
  }
}