9515265747139524a431ac029ce9a06fc49d0a0c.svn-base 226 Bytes
function bar(a) {
        try {
                foo();
        } catch(e) {
                alert("Exception caught (foo not defined)");
        }
        alert(a);               // 10 in FF, "[object Error]" in IE
}
bar(10);