function validateSubscribe ( $array )
{
   var i = 0;
   var msg = '';
   for (i;i<$array.length;++i)
   {
     xname = $array[i]
     if (xname == 'Anrede') {msg += 'Bitte Anrede auswählen.\n';}
     if (xname == 'Vorname') {msg += 'Bitte Vorname ausfüllen.\n';}
     if (xname == 'Nachname') {msg += 'Bitte Nachname ausfüllen.\n';}
     if (xname == 'Email') {msg += 'Bitte E-Mail ausfüllen.\n';}
   }
   alert(msg);
}
