The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
/*==================================================
 *  Debug Utility Functions
 *==================================================
 */

Timeline.Debug = new Object();

Timeline.Debug.log = function(msg) {
};

Timeline.Debug.exception = function(e) {
    alert("Caught exception: " + (Timeline.Platform.isIE ? e.message : e));
};