Figured it out . . .
function emailenc($e){
$e = strtolower($e);
$trans = array(
"." => ".","&" => "&"," " => " ","_" => "_","-" => "-",
"@" => "@","a" => "a","b" => "b","c" => "c","d" => "d",
"e" => "e","f" => "f","g" => "g","h" => "h","i" => "i",
"j" => "j","k" => "k","l" => "l","m" => "m","n" => "n",
"o" => "o","p" => "p","q" => "q","r" => "r","s" => "s",
"t" => "t","u" => "u","v" => "v","w" => "w","x" => "x",
"y" => "y","z" => "z",
);
$e=strtr($e, $trans);
return $e;
} ///// End of function
It will encode email address' so that bots cannot pick them up and spam 'em.