function menu_roll(menuBack, menuText)
{
if (document.all) {
var theback = "document.all['" + menuBack + "'].style.background";
var thetext = "document.all['" + menuText + "'].style.color";
}
if (document.getElementById) {
var theback = "document.getElementById('" + menuBack + "').style.background";
var thetext = "document.getElementById('" + menuText + "').style.color";
}
eval(theback + " = " + "'#ffffff'");
eval(thetext + " = " + "'#000000'");
}

function menu_noroll(menuBack, menuText)
{
if (document.all) {
var theback = "document.all['" + menuBack + "'].style.background";
var thetext = "document.all['" + menuText + "'].style.color";
}
if (document.getElementById) {
var theback = "document.getElementById('" + menuBack + "').style.background";
var thetext = "document.getElementById('" + menuText + "').style.color";
}
eval(theback + " = " + "'#000000'");
eval(thetext + " = " + "'#C2992F'");
}

function e2_insertMailTo(emailName, emailDomain, emailVisibleText) {
  var s;
  s = emailName + '@' + emailDomain;
  document.write("<a href='mailto:" + s + "'>" + emailVisibleText + "</a>");
}