Subscribe
As a subscriber you will be:-
- notified of each new issue of the Modern Goddess Magazine,
- eligible to enter our competitions and give-aways,
- connecting with like-minded women around the world and,
- exposed to empowering and inspiring women, businesses and services.
To subscribe, complete the form below:-
// 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; }
valcheck = document.getElementById("Fields[87]"); if (valcheck.value == "") { alert("Please enter a value for the \'First Name\' field."); valcheck.focus(); valcheck.select(); return false;
} else { var minsize_87 = 0; var maxsize_87 = 100; var fieldlength = 0; fieldlength = valcheck.value.length; if (fieldlength < minsize_87) { alert("You must enter a value for the \'First Name\' field longer than " + minsize_87 + " characters"); valcheck.focus(); return false; } if (fieldlength > maxsize_87) { alert(”You must enter a value for the ‘First Name’ field no longer than ” + maxsize_87 + ” characters”); valcheck.focus(); return false; }
}
return true; }
