The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
function changeType(p) {
  var curType = p.options[p.selectedIndex].value;
}

function hideElem(id) {
  e(id).style.display = 'none';
}

function showElem(id) {
  e(id).style.display = 'inline';
}

function e(id) { return document.getElementById(id) }