//Mail utility
//* DO NOT EDIT THIS BIT *
if (!exclude) { //********
//************************

//---------------------------------------------------------------
// Based on Anti-spam JavaScript function
// You may reproduce this script, but please include this message
//---------------------------------------------------------------
// Copyright (C) 2002, Ashley Brown. http://www.ashleybrown.co.uk/
//---------------------------------------------------------------


// use with html <a href="maillist.html"   onclick="despammail('initials');return false;"> 
// where initials decode as below.  Only allows emailing within our domain.



function despammail(strUser) {

// Choose user's email prefix:
switch (strUser) {
   case "acs" :
      email="astanton";
      break;
   case "jas" :
      email="jsilver";
      break;
   case "dsb" :
      email="astanton";
      break;
   case "alg" :
      email="algomez";
      break;
   case "dch" :
      email="dchovde";
      break;
   case "cyh":
      email="huang";
      break;
   case "djk" :
      email="astanton";
      break;
   case "po" :
      email="popsahl";
      break;
   case "kap" :
      email="peterson";
      break;
   case "mep" :
      email="mpaige";
      break;
   case "sjc" :
      email="sjchen";
      break;
   case "smm" :
      email="smassick";
      break;
   case "vld" :
      email="vledoux";
      break;
   case "db" :
      email="dbrody";
      break;
   case "jk" :
      email="jkastner";
      break;
   case "sws" :
      email="info";
      break;
   case "jobs" :
      email="employment";
      break;
   case "info" :
      email="info";
      break;
   default :
      email="info";
   }
// invoke mailer:
	document.location = "mailto:" + email + "@" + "swsciences.com";
}



//* DO NOT EDIT THIS BIT *
}//***********************
//************************

