function copyright()
{
// display copyright notice
 document.write('<IMG SRC="copyright.jpg" WIDTH="115" HEIGHT="204" ALIGN="LEFT" alt="Copyright 2002, Minnesota Austin Healey Club, Inc.  All Rights Reserved">')
}


function emFormat(domain, SuffixType, name, type, lnk)
/* Obfuscate email address to prevent Spam crawlers

   Type = 1 is email address as text of link
   Type = 2 is link parameter text as link
   Type = 3 is graphic specified in link parameter as link
*/
{
 var a, b, c, d, e, f, s
 a='<a href="mai'
 b=name
 c='">'
 a+='lto:'
 b+='@'
 e='</a>'
 f='<IMG SRC="'
 g='" BORDER="0">'
 b+=domain
 if (SuffixType==1) s='.com'
 if (SuffixType==2) s='.net'
 if (SuffixType==3) s='.org'
 if (SuffixType==4) s='.gov'
 if (SuffixType==5) s='.k12.mn.us'
 b+=s
 if (type==1) d=b
 if (type==2) d=lnk
 if (type==3) d=f+lnk+g
 document.write(a+b+c+d+e)
}


function emFormatSimple(domain, suffix, name)
{
 var a
 if (suffix==1) a=name+'@'+domain+'.com'
 if (suffix==2) a=name+'@'+domain+'.net'
 if (suffix==3) a=name+'@'+domain+'.org'
 if (suffix==4) a=name+'@'+domain+'.gov'

 document.write(a)
}
