<!--

function launch(newURL, newName, newFeatures, orgName) {
  var remote = open(newURL, newName, newFeatures);
  if (remote.opener == null)
    remote.opener = window;
  remote.opener.name = orgName;
  return remote;
}

function launchjokes() {
  myRemote = launch("jokes_page.htm", "jokewindow", 
  //CHANGE Height & Width here
"height=300,width=250,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0", "myWindow");
}

function launchsupport() {
  myRemote = launch("tech_support.htm", "supportwindow", 
  //CHANGE Height & Width here
"height=305,width=550,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0", "myWindow");
}

function launchform() {
  myRemote = launch("contest_form.htm", "contestwindow", 
  //CHANGE Height & Width here
"height=400,width=600,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0", "myWindow");
}

function launchgame() {
  myRemote = launch("game_page.htm", "gamewindow", 
  //CHANGE Height & Width here
"height=400,width=525,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0", "myWindow");
}

function popup() {
  myRemote = launch("popup.htm", "gamewindow", 
  //CHANGE Height & Width here
"height=315,width=315,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0", "myWindow");
}
// -->
