// JavaScript Document
// variables to hide email addresses from bots
/* Note, variables only need to be defined once, then can be reused if
the email address is to appear multiple times on the page. This also makes
it easy to update the email address, only needs to be updated in one place to
cover its use throughout the entire site . */

// split into two so even if a crawler reads this file it won't recognize the command
m1='mai'
m1+='lto:'

// split into two so even if a crawler reads this file it won't find or recognize the whole domain name
csu='@colos'
csu+='tate.edu'

mcsu='@mail.colos'
mcsu+='tate.edu'

// main department addr
// In footer
dept='cas_dare'+mcsu


// faculty page addr
// see faculty.html page for JavsScript code to insert to display email addresses
sdavies='stephen.davies'+csu
dhoag='dana.hoag'+csu
mfrasier='marshall.frasier'+csu
cbond='craig.bond'+csu
jkeeling='jennifer.keeling'+csu
ndalsted='norman.dalsted'+csu
lgray='lee.gray'+csu

// other pages...


