Our newsletter goes out once or twice a month, bringing you the latest class schedule, as well as informative pregnancy, birth and parenting articles and other community family events. Our list is ours alone, never shared. You can easily unsubscribe at any time.
To subscribe, you might be prompted to enter your email address a second time. Please hit your back button to return to our site after successfully subscribing. We suggest NOT using a comcast email address, as comcast seems to not like our newsletters!
// check multi checkboxes based on the name passed in. function CheckMultiple(name) { theFrm = document.frmSS; for (var i=0; i < theFrm.length; i++) { fldObj = theFrm.elements[i]; var fieldnamecheck=fldObj.name.indexOf(name); if (fieldnamecheck != -1) { if (fldObj.checked) { return true; } } } return false; }
function CheckSS() { theFrm = document.frmSS;
hasDot = theFrm.Email.value.indexOf("."); hasAt = theFrm.Email.value.indexOf("@");
if (hasDot == -1 || hasAt == -1) { alert("Please enter a valid email address."); theFrm.Email.focus(); theFrm.Email.select(); return false; }
return true; }
function CheckMultiple(name) { theFrm = document.frmSS; for (var i=0; i < theFrm.length; i++) { fldObj = theFrm.elements[i]; var fieldnamecheck=fldObj.name.indexOf(name); if (fieldnamecheck != -1) { if (fldObj.checked) { return true; } } } return false; }
function CheckSS() { theFrm = document.frmSS;
hasDot = theFrm.Email.value.indexOf("."); hasAt = theFrm.Email.value.indexOf("@");
if (hasDot == -1 || hasAt == -1) { alert("Please enter a valid email address."); theFrm.Email.focus(); theFrm.Email.select(); return false; }
return true; }