/* This file is copyright Neil Hawker and Thomas Poots. All access is monitored to the files on our server if you open this file your IP is logged. If you copy/use content from our website we will take legal action against offenders, who copy/use content with out permission so if you are reading this message now please leave this file otherwise we will take action against you! */
// Block all right click attempts.
function disableRightClick(e)
{
  var message = "No Message (silent)";
  if(!document.rightClickDisabled) // initialize
  {
    if(document.layers) 
    {
      document.captureEvents(Event.MOUSEDOWN);
      document.onmousedown = disableRightClick;
    }
    else document.oncontextmenu = disableRightClick;
    return document.rightClickDisabled = true;
  }
  if(document.layers || (document.getElementById && !document.all))
  {
    if (e.which==2||e.which==3)
    {
      //alert(message);
      return false;
    }
  }
  else
  {
    //alert(message);
    return false;
  }
}
// disableRightClick();
//v2
function collapse(objno)
{
	obj = document.getElementById('collapseobj_'+objno);
	img = document.getElementById('collapseimg_'+objno);
    if (obj.style.display != "none")
    {
        obj.style.display = 'none';
		if (img){
		img.src='/images/arrow_down.png';
		}
    }
    else
    {
        obj.style.display = '';
		if(img){
		img.src='/images/arrow_up.png';
		}
    }
}
arrow_up= new Image(20,20)
arrow_up.src = "/images/arrow_up.png"

arrow_down= new Image(20,20)
arrow_down.src = "/images/arrow_down.png"
// Page Load Events
function livestats() {
MyAjaxRequest('onlinestats_ajax','/onlinestats.php');
setTimeout(livestats,6000);
}
function pageLoad() {
livestats();	
}