/* JavaScript functions for Advanced Project Management website */

function showForm_addToEmailList() {
/* show form to add user to email list */
  window.open(
    'http://proedreg.stanford.edu/apmregistration/MailList_formA.html',
    'addToEmailList', 
    'left=20,top=20,width=480,height=500,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes');
}

function showForm_addToWebinarList() {
/* show form to add user to webinar list */
  window.open(
    'archivedWebinar.htm',
    'addToWebinarList', 
    'left=20,top=20,width=600,height=500,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes');
}

