
function onRollOver(id) { 
    if (document.all) {
        eval(id + '.style.backgroundColor = "#446699"')
    }
    else if (document.getElementById){
         document.getElementById(id).style.backgroundColor = '#446699'
       }
}
function onRollOut(id) { 
    if (document.all) {
       eval(id + '.style.backgroundColor = "#334466"')
    }
    else if (document.getElementById){
         document.getElementById(id).style.backgroundColor = '#334466'
       }
}

function scramble(a,c,b){
var a,b,c
d=unescape('%40')
x = '<a href="mailto:'+a+c+d+b+'">'+a+c+d+b+'</a>';
return x;
}


