function setDate(year, month, day, hour, minute, second, topicID) {
  dateList     = new Array("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
  topicDate = new Date(year, month, day, hour, minute, second);
  topicTime = topicDate.getTime();
  localOffset = topicDate.getTimezoneOffset() * 60000;
  topicTimeUTC = topicTime - (9 * 3600000);
  localTime = topicTimeUTC - localOffset;
  localDatetime = new Date(localTime);
  $("#date_" + topicID).html(localDatetime.toString("ddd d MMM yyyy HH:mm"));
}

function confirmAndGet(url, message) {
  if (confirm(message)) {
    window.location = url;
  }
}
