// JavaScript Document


// Anti-Spam Email Displayer- By JavaScriptKit.com
// Visit JavaScript Kit (http://javascriptkit.com) for this script and more.
// This notice must stay intact for use

var contacts=new Array()
//Specify text and corresponding email address.
//Use [at] and [dot] in place of "@" and "." for anti spam purpose:
contacts[0]=["Neil K. Norman", "nknorman[at]weci[dot]net"]
contacts[1]=["Phillip Shelley", "pshelley[at]weci[dot]net"]
contacts[2]=["Lynn Freese", "lfreese[at]weci[dot]net"]
contacts[3]=["Vince Strickler", "vstrickler[at]weci[dot]net"]
contacts[4]=["Joel D. Bryan", "jdbryan[at]weci[dot]net"]
contacts[5]=["Mark Ladner", "mladner[at]weci[dot]net"]
contacts[6]=["Stan Bieker", "sbieker[at]weci[dot]net"]
contacts[7]=["Kelly Burch", "kburch[at]weci[dot]net"]
contacts[8]=["Bob Brandl", "bbrandl[at]weci[dot]net"]
contacts[9]=["Randy Coleman", "rcoleman[at]weci[dot]net"]
contacts[10]=["Jevin Kasselman", "jpkassel[at]weci[dot]net"]
contacts[11]=["Anita McCollum", "amccollum[at]weci[dot]net"]
contacts[12]=["Mary Ann Davis", "mdavis[at]weci[dot]net"]
contacts[13]=["Kathy Hoeme", "khoeme[at]weci[dot]net"]
contacts[14]=["Pam Murhpy", "pmurphy[at]weci[dot]net"]
contacts[15]=["Bob Fulton", "bfulton[at]weci[dot]net"]
contacts[16]=["Larry Brownlee", "lbrownlee[at]weci[dot]net"]
contacts[17]=["", ""]
contacts[18]=["John Tope", "jtope[at]weci[dot]net"]
contacts[19]=["George Andrasek", "gandrasek[at]weci[dot]net"]
contacts[20]=["Jamie Kitch", "jkitch[at]weci[dot]net"]
contacts[21]=["Becky Brakey", "bbrakey[at]weci[dot]net"]
contacts[22]=["Jennifer Horning", "jhorning[at]weci[dot]net"]
contacts[23]=["Jamie Coleman", "jcoleman[at]weci[dot]net"]
contacts[24]=["Jana Harkness", "jharkness[at]weci[dot]net"]
contacts[25]=["Joyce Trettenero", "jtrettenero[at]weci[dot]net"]
contacts[26]=["Chris Huber", "chuber[at]weci[dot]net"]
contacts[27]=["Mark Kircher", "mkircher[at]weci[dot]net"]
contacts[28]=["Sheila Helm", "shelm[at]weci[dot]net"]
contacts[29]=["", ""]
contacts[30]=["Debbie Stonestreet", "dstonestreet[at]weci[dot]net"]
contacts[31]=["Lisa Loeppke", "lloeppke[at]weci[dot]net"]
contacts[32]=["Steve Wilson", "swilson[at]weci[dot]net"]
contacts[33]=["Eilene Jacobs", "ejacobs[at]weci[dot]net"]
contacts[34]=["Ashley Grubb", "agrubb[at]weci[dot]net"]
contacts[35]=["Pat Hanna", "phanna[at]weci[dot]net"]
contacts[36]=["Jillane Koochel", "jkoochel[at]weci[dot]net"]
contacts[37]=["Secret Imel", "simel[at]weci[dot]net"]




//Specify caption text to display within SELECT menu. Only applicable if you're using the form option:
var dropmenucaption="CONTACT US FORM "

function displaycontact(emailarray, cssclass, displaymethod, extrainfo){
if (displaymethod=="text"){
document.write('<span class="' + cssclass + '">\n')
if (typeof emailarray[0]=="object"){ //if array passed consists of multiple elements
for (i=0; i<emailarray.length; i++){
var seperator=(i<emailarray.length-1)? extrainfo : ""
document.write('<a href="mailto:' + modifyemail(emailarray[i][1])+ '">'+ emailarray[i][0] + '</a>' + seperator)
}
}
else //else if it is a single array element
document.write('<a href="mailto:' + modifyemail(emailarray[1])+ '">'+ emailarray[0] + '</a>')
document.write('</span>')
}
else if (displaymethod=="form"){
document.write('<form>\n')
document.write('<select size="' + extrainfo + '" onChange="jumptooption(this)" class="' + cssclass + '">\n')
document.write('<option value="caption">' + dropmenucaption + '</option>\n')
for (i=0; i<emailarray.length; i++)
document.write('<option value="mailto:' + modifyemail(emailarray[i][1]) +'">' + emailarray[i][0] + ' </option>\n')
document.write('</select></form>\n')
}
}

function modifyemail(emailitem){
var modified=emailitem.replace(/\[at]/gi, "@")
modified=modified.replace(/\[dot]/gi, ".")
return modified
}

function jumptooption(themenu){
if (themenu.options[themenu.selectedIndex].value !="caption")
location=themenu.options[themenu.selectedIndex].value
}

//USAGE INSTRUCTION. displaycontact(1st paramter, "2nd paramter", "3rd paramter", "4th paramter")
//1st parameter: Input the name of the array containing the list of email addresses. To display one single email, input the corresponding array element. 
//2nd parameter: Input the CSS Classname that is to be applied. Enter arbitrary name for none.
//3rd parameter: Input either "form" or "text." Former will display email in drop down menu. Later in plain text. Only "text" mode supports displaying of single email address!
//4th parameter: If in "form" mode, enter an integer to control the height of the <SELECT> tag. If "text" mode, enter any string to act as a divider between each email text. For example "|", "<br>" etc.

//SAMPLE USAGES (uncomment below to see)
//displaycontact(contacts, "textstyle", "text", " | ")

//displaycontact(contacts, "formstyle", "form", "1")

//displaycontact(contacts[2], "textstyle", "text", "")

