
In order to be kept informed of all what is happening in the aviation and space community, please feel free to register to our monthly newsletter.
function CheckMultiple1(frm, name) {
for (var i=0; i < frm.length; i++)
{
fldObj = frm.elements[i];
fldId = fldObj.id;
if (fldId) {
var fieldnamecheck=fldObj.id.indexOf(name);
if (fieldnamecheck != -1) {
if (fldObj.checked) {
return true;
}
}
}
}
return false;
}
function CheckForm1(f) {
if (f.email.value == "") {
alert("Please enter your email address.");
f.email.focus();
return false;
}
if (f.format.selectedIndex == -1) {
alert("Please choose a format to receive your email campaigns in");
f.format.focus();
return false;
}
var fldcheck = CheckMultiple1(f, "CustomFields[1_1]");
if (!fldcheck) {
alert("Please choose one or more options for field Interested in");
return false;
}
return true;
};
As a matter of course, your personal data will be treated confidential. All information submitted on this website will be handled in strict confidentiality and will not be shared with any third party.As there is always place for improvement, you are also welcome to leave your impressions and comments about our magazine.
Unsubscribe
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;
}
if (!CheckMultiple("SelectLists")) {
alert("Please choose a mailing list to unsubscribe from.");
return false;
}
return true;
}
// 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 (!CheckMultiple("SelectLists")) {
alert("Please choose a mailing list to subscribe to.");
return false;
}
if (hasDot == -1 || hasAt == -1)
{
alert("Please enter a valid email address.");
theFrm.Email.focus();
theFrm.Email.select();
return false;
}
return true;
}