// JavaScript Document

function submit(){
  return false;
}

function memberOnly(url){
  url=(url) ? url : '/member-only.html';
  var w=350;
  var h=250;
  var top=(window.screen.height/2)-(h/2);
  var left=(window.screen.width/2)-(w/2);
  window.open(url,'MemberOnly','menubar=0,location=0,scrollbars=0,resizable=0,status=0,toolbar=0,width='+w+',height='+h+',top='+top+',left='+left);
  return false;
}

function reminder(url){
  url=(url) ? url : '/reminder.html';
  var w=550;
  var h=450;
  var top=(window.screen.height/2)-(h/2);
  var left=(window.screen.width/2)-(w/2);
  window.open(url,'reminder','msenubar=0,location=0,scrollbars=0,resizable=0,status=0,toolbar=0,width='+w+',height='+h+',top='+top+',left='+left);
  return false;
}
