/* Make it easy to add events either the W3C way or the IE way */
function addEvent(o, e, f) {
  if (o.addEventListener) {
    o.addEventListener(e, f, false);
    return true;
  } else if (o.attachEvent)
    return o.attachEvent("on"+e, f);
  else
    return false;
}
