<!-- 

function ShowObfuscatedEmail(name)
{
	recognized = false;
	if( name == "heyJASguys" )
	{
  	coded = "CFQAJWDUQW@AJW-VFHC8BHJ46FGBJ.H06";
    cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890";
    emailText = "heyJASguys";
    recognized = true;
  }
  else if( name == "PressBits" )
	{
  	coded = "acuddryed@zqd-eusx7ysq35utyq.s95";
    cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890";
    emailText = "PressBits";
    recognized = true;
  }
  else if( name == "JoshuaIsraelsohn" )
	{
  	coded = "C6YEWL@CLY-XHJE4DJLA2HIDL.J62";
    cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890";
    emailText = "Joshua Israelsohn";
    recognized = true;
  }
  else if( name == "SteveWirth" )
	{
  	coded = "bcses@xob-csqv3wqoz1srwo.q51";
    cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890";
    emailText = "Steve Wirth";
    recognized = true;
  }
  else if( name == "AimeeKalnoskas" )
	{
  	coded = "ow1ss@xob-csqv3wqoz1srwo.q51";
    cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890";
    emailText = "Aimee Kalnoskas";
    recognized = true;
  }
  else if( name == "TerryMcCoy" )
	{
  	coded = "csaah@xob-csqv3wqoz1srwo.q51"
    cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890"
    emailText = "Terry McCoy"
    recognized = true;
  }
  else if( name == "NancyBateman-Kocsis" )
	{
  	coded = "3o3qh@xob-csqv3wqoz1srwo.q51";
    cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890";
    emailText = "Nancy Bateman-Kocsis";
    recognized = true;
  }
  else if( name == "JerryConfalone" )
	{
  	coded = "xsaah@xob-csqv3wqoz1srwo.q51";
    cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890";
    emailText = "Jerry Confalone";
    recognized = true;
  }
  
  
  if( recognized == true )
  {  
    shift=coded.length
    link=""
    for (i=0; i<coded.length; i++){
    	if (cipher.indexOf(coded.charAt(i))==-1){
    		ltr=coded.charAt(i)
    		link+=(ltr)
    	}
    	else {     
    		ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length
    		link+=(cipher.charAt(ltr))
    	}				
    }
  	document.write("<a id='"+emailText+" email' class='bodylink' href='mailto:"+link+"'>"+emailText+"</a>")
  }
	
	
}

-->