function eaddress(_email1,_email2,_email3)
{
/* returns (with the qoutes) the string: "mailto:email address" */
var _array = new Array();
_array[0] = _email1;
_array[1] = "@";
_array[2] = _email2;
_array[3] = ".";
_array[4] = _email3;
_array[5] = _array.join("");
_array[6] = "\"mailto:" + _array[5]+"\"";
return _array[6];
}

function SetMouseOverStyle(_id)
{
//document.getElementById(_id).style.font="heavy";
document.getElementById(_id).style.color="rgb(256,256,256)";
document.getElementById(_id).style.backgroundColor="rgb(176,176,176)";
document.getElementById(_id).style.borderRightColor="rgb(0,0,0)";
document.getElementById(_id).style.borderBottomColor="rgb(0,0,0)";
document.getElementById(_id).style.borderLeftColor="rgb(128,128,128)";
document.getElementById(_id).style.borderTopColor="rgb(128,128,128)";

}

function SetMouseOutStyle(_id)
{
document.getElementById(_id).style.backgroundColor="rgb(224,224,224)";document.getElementById(_id).style.color="rgb(0,0,128)";
}


