if (self != top) { top.location.href = self.location.href } 


var IP = "http://" + "94.195.208.200";
var pict = new Array();

function address(port) {
  fulladdr = IP + ":" + port;
  document.location = fulladdr;
}

function count2() {
   if (document.getElementById('counter2')) document.getElementById('counter2').src = IP + ":8765/hitcounter2.bmp";
}

function count() {
   if (document.counter) document.counter.src = IP + ":8765/hitcounter.bmp";
}

function wait(){

   pict[0] = new Image(); 
   pict[0].onload = swap;
   pict[0].src = IP + ":8765/online.jpg";
}

function swap() {
     document.getElementById('online').src = pict[0].src;
}

