// ------------------------------
// E-Mail Verschlüsselung
// (c)2005 by borsti kuhles
// ------------------------------
function amc2( anArray ) {
 str = 'o' + ':';
 p = '.';
 q = '@';
 if( anArray[0] != "" ) {
  str += anArray[0];
  if( anArray[1] != "" ) str += p;
 }
 if( anArray[1] != "" ) str += anArray[1];
 str += q;
 str = 'i' + 'l' + 't' + str;
 str2 = "";
 for( i = 2; i < 5; i++ ) {
  if( anArray[i] != "" ) {
   if( str2 != "" ) str2 += p;
   str2 += anArray[i];
  }
 }
 str += str2;
 if( anArray[5] != "" ) {
  str += '?';
  str += 's' + 'u' + 'b';
  str += 'j' + 'e' + 'c'
  str += 't' + '=' + anArray[5];
 }
 str = 'm' + 'a' + str;
 parent.location = str;
}
