<!--
// Function to attach events to objects IE + Firefox
function AddEvent(AObject, AEventType, AFunction) {
  if (AObject.addEventListener){ 
    AObject.addEventListener(AEventType, AFunction, true); 
    return true;
  } else if (AObject.attachEvent){ 
    AObject.attachEvent("on"+AEventType, AFunction);
    return true;
  } else { 
    return false; 
  }
}
//-->
