<!--

emDs = new Array("roland-kohler", "aeroton", "neue-boehmische-blasmusik");
emSs = new Array("de", "com");
emTs = new Array("Roland Kohler", "Aeroton Musikverlag", "Neue Böhmische Blasmusik");

function emse(dom)
{
  // Parameter prüfen
  if (dom < 1 || dom > emDs.length)
    return;
  // senden
  var Link = "mai";
  Link += "lto";
  Link += ":";
  Link += "info";
  Link += String.fromCharCode(64);
  Link += emDs[dom-1];
  Link += "." + emSs[0];
  Link += "?subject=" + emTs[dom-1];
  location.href = Link;
}

function get_info(dom)
{
  if (dom < 1 || dom > emDs.length)
    dom = 1;
  var Text = "info";
//  Text += String.fromCharCode(64);
  Text += "&nbsp;(at)&nbsp;";
  Text += emDs[dom-1];
  Text += "." + emSs[0];

  return Text;
}

function dummy()
{
  return;
}

//-->

