
function hilight()  {
var eSrc = window.event.srcElement;
eSrc.style.color="red";
}

function white()  {
var eSrc = window.event.srcElement;
eSrc.style.color="white";
}

function yellow()  {
var eSrc = window.event.srcElement;
eSrc.style.color="yellow";
}

function escramble(anchor,col,subject){
 var a,b,c,d,e,f,g,h,i,j,k

 a='<a '
 b=' href="mai'
 c='lto:bev'
 d='@'
 e='cyberpursuits.com?subject='
 f=subject
 g='" STYLE="text-decoration:none;color:'
 h=col
 i=';">'
 j=anchor
 k='</a>'

 document.write(a+b+c+d+e+f+g+h+i+j+k)
}

function over(col)  {
var eSrc = window.event.srcElement;
eSrc.style.color=col;
}

function out(col)  {
var eSrc = window.event.srcElement;
eSrc.style.color=col;
}


