var hidden_e_mail_address = 'i' + 'n' + 'f' + 'o' + '@' + 'b' + 'l' + 'u' + 'e' + 'w' + 'a' + 'r' + 't' + 'h' + 'o' + 'g' + '.' + 'c' + 'o' + 'm';

function highlight(item) {
  item.style.fontWeight = 'bold';
}

function unhighlight(item) {
  item.style.fontWeight = 'normal';
}

function select(item) {
  document.all.iframe.src = 'iframes/' + item.id + '_iframe.html';
}

function unselect(item) {
  if (item_selected[item.id]) {
    item.style.fontWeight = 'normal';
    item_selected[item.id] = false;
  }
}

function email() {
  document.all.bwEmail.href = 'mailto:' + hidden_e_mail_address;
}

