// Eamonn Fitzsimons//
function openCredits() {
  var wndHeight = 420;
  var wndWidth = 370;
  var X = 0;
  var Y = 0;
  if (screen.availWidth){
    X = (screen.availWidth / 2) - (wndWidth / 2);
    Y = (screen.availHeight / 2) - (wndHeight / 2);
  }

  window.open("credits.htm","credits","left=" + X + "screenX=" + X + "screenY=" + Y + ",top=" + Y + ",toolbar=0,scrollbars=1,resizable=0,height=420,width=370");
}

function openSignup() {
  var wndHeight = 420;
  var wndWidth = 555;
  var X = 0;
  var Y = 0;
  if (screen.availWidth){
    X = (screen.availWidth / 2) - (wndWidth / 2);
    Y = (screen.availHeight / 2) - (wndHeight / 2);
  }

  window.open("signup.htm","signup","left=" + X + "screenX=" + X + "screenY=" + Y + ",top=" + Y + ",toolbar=0,scrollbars=1,resizable=0,height=420,width=555");
}

function openMW() {
  var wndHeight = 450;
  var wndWidth = 929;
  var X = 0;
  var Y = 0;
  if (screen.availWidth){
    X = (screen.availWidth / 2) - (wndWidth / 2);
    Y = (screen.availHeight / 2) - (wndHeight / 2);
  }

  window.open("mwf.htm","mw","left=" + X + "screenX=" + X + "screenY=" + Y + ",top=" + Y + ",toolbar=0,scrollbars=1,resizable=0,height=450,width=929");
}

	
//function openSignup(URL) {
    //day = new Date();
    //id = day.getTime();
    //eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,width=550,height=380');");
   // }
/*
-----------------------------------------------------------
*/