 function move() {
  window.moveTo(0,0);
  window.resizeTo(screen.width,screen.height);
  window.focus();
}

function trailerpop(mypage,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
trailer = window.open(mypage,"trailer","height="+h+",width="+w+",top="+TopPosition+",left="+LeftPosition+",fullscreen=0,location=0,menubar=0,resizable=0,scrollbars="+scroll+",status=0,titlebar=0,toolbar=0")
if(trailer.window.focus){trailer.window.focus();}
}

function joinpop(mypage,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
join = window.open(mypage,"join","height="+h+",width="+w+",top="+TopPosition+",left="+LeftPosition+",fullscreen=0,location=0,menubar=0,resizable=0,scrollbars="+scroll+",status=1,titlebar=0,toolbar=0")
self.close();
if(join.window.focus){join.window.focus();}
}

function hit(hitlink) {
  if(document.images) {
    (new Image()).src=''+hitlink+'';
  }
  return true;
}
 