



// 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]=["Roy Pomerantz", "rpomerantz[at]berkleysum[dot]com"]
contacts[1]=["Joseph Rugnetta", "jrugnetta[at]berkleysum[dot]com"]
contacts[2]=["Michael A. Turner", "maturner[at]berkleysum[dot]com"]
contacts[3]=["Cindy Broschart", "cbroschart[at]berkleysum[dot]com"]
contacts[4]=["Michael Harris", "maharris[at]berkleysum[dot]com"]
contacts[5]=["Pam Garrett", "pgarrett[at]berkleysum[dot]com"]
contacts[6]=["Michael Johnson", "mjohnson[at]berkleysum[dot]com"]
contacts[7]=["Linda Morgan", "lmorgan[at]berkleysum[dot]com"]
contacts[8]=["Marc Zierten", "mzierten[at]berkleysum[dot]com"]
contacts[9]=["Dave Anderson", "danderson[at]berkleysum[dot]com"]
contacts[10]=["Shelley Hammarsten", "shammarsten[at]berkleysum[dot]com"]
contacts[11]=["Tom Hartnett", "thartnett[at]berkleysum[dot]com"]
contacts[12]=["Kathie Olson", "kmolson[at]berkleysum[dot]com"]
contacts[13]=["Todd Stotz", "tstotz[at]berkleysum[dot]com"]
contacts[14]=["Wesley Zabel", "wzabel[at]berkleysum[dot]com"]
contacts[15]=["Kenneth Cormier", "kcormier[at]berkleysum[dot]com"]
contacts[16]=["William J. Raggie", "jraggie[at]berkleysum[dot]com"]
contacts[17]=["Eric Henry", "ehenry[at]berkleysum[dot]com"]
contacts[18]=["Kathy Squyres", "ksquyres[at]berkleysum[dot]com"]
contacts[20]=["Marc Bryant", "mbryant[at]berkleysum[dot]com"]
contacts[21]=["Robert Gonzalez", "rgonzalez[at]berkleysum[dot]com"]
contacts[22]=["Lowell Saito", "lsaito[at]berkleysum[dot]com"]
contacts[23]=["Linda Campbell", "lcampbell[at]berkleysum[dot]com"]
contacts[24]=["Suzie DiMeglio", "sdimeglio[at]berkleysum[dot]com"]
contacts[25]=["Beverly Miller", "bmiller[at]berkleysum[dot]com"]
contacts[26]=["John Cosby", "jcosby[at]berkleysum[dot]com"]
contacts[27]=["Andrea Crites", "acrites[at]berkleysum[dot]com"]
contacts[28]=["Bob Millican", "rmillican[at]berkleysum[dot]com"]
contacts[29]=["E&S UW", "entertainmentuw[at]berkleysum[dot]com"]
contacts[30]=["E&S Claims", "entertainmentclaims[at]berkleysum[dot]com"]
contacts[31]=["Marina Ramshur", "mramshur[at]berkleysum[dot]com"]
contacts[32]=["CasualtyUW", "casualtyuw[at]berkleysum[dot]com"]
contacts[33]=["Crys Amurao", "camurao[at]berkleysum[dot]com"]
contacts[34]=["Bob Patterson", "bpatterson[at]berkleysum[dot]com"]
contacts[35]=["Tim Thomas", "tthomas[at]berkleysum[dot]com"]
contacts[36]=["Tom Banks", "tbanks[at]berkleysum[dot]com"]
contacts[37]=["Jason Wren", "jwren[at]berkleysum[dot]com"]
contacts[38]=["Eric Bibb", "ebibb[at]berkleysum[dot]com"]
contacts[39]=["Jane Plisko", "jplisko[at]berkleysum[dot]com"]





//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", "")


