﻿function jsSignUpMailingList() {
    var the_es = document.getElementById('MailingList1_ea').value;
    var the_m = document.getElementById('MailingList1_m').value;
    var the_p = document.getElementById('MailingList1_p').value;

    if (the_es == '') {
        alert('Please enter an Email Address before signing up !!');
    } else if (the_es == 'Enter Email Address Here') {
        alert('Please enter an Email Address before signing up !');
    } else {
        if (confirm('Confirm Signup to our News Mailing List ??') == true) {
            window.open('http://ui.constantcontact.com/d.jsp?ea=' + the_es + '&m=' + the_m + '&p=' + the_p, '_blank', 'width=320px, height=250px, scrollbars=auto, toolbars=no, status=yes, resizable=yes');
        } else {
            //Do Nothing
        }        
    }    
}

