<!--
document.write('<bgsound src="null" id=mysound loop=1 autostart="true">')
function playsound(click) {
  if (document.all) {
  document.all.mysound.src = click
  }
}

function Breakframe() {
  if (top.location != self.location) {
  top.location = self.location.href
  }
}

function Redirect(sUrl) {
  location = sUrl
}

function Timeslot(nSlots) 
{
  date = new Date()
  nHours = date.getHours()

  for (i=1;i<=nSlots;i++) 
  {
    if (nHours <= (24/nSlots)*i) 
    {
      return i
      break
    }
  }
}
// -->
