var goToTop;







function updateTopTotal(ot,tv) {
  if(document.getElementById('out'+ot)) {
    document.getElementById('out'+ot).removeChild(document.getElementById('out'+ot).firstChild);
    var newTotal = document.createTextNode(tv);
    document.getElementById('out'+ot).appendChild(newTotal);
  }
  return;
}


function clickTop(e) {
  if(!e){
    //for IE
    var e = window.event;
    var eTar = e.srcElement;
  }else{
    //for Standard/Compliant
    var eTar = e.target;
  }
  if (eTar.className=="toplink" && (e.which==1 || e.button==1)) {
    var thisTime = new Date();
    var thatTime = Date.parse(thisTime);
    goToTop = eTar.title;
    var jsEl = document.createElement('script');
    jsEl.type = 'text/javascript';
    jsEl.src = "http://www.allchatsites.com/top/topclick.php?top="+eTar.name+"&r="+thatTime;
    document.getElementById('scriptbox').appendChild(jsEl);
    if(topPop) window.open(goToTop);
  }
  return;
}


function noLeftClick() {
  return false;
}


// document.oncontextmenu = noLeftClick;
document.onmousedown = clickTop;