I would like to see examples of function-level scope usage that would be harder or impossible to implement using block-level scope.
Maybe it will sound obvious, but you can implement recursion in function-level scope, which can be often useful, for example:
var x = 5; // global scope
(function (y) { // y - locally scoped variable on each execution
y && arguments.callee(--y); // recursion!
console.log(y);
})(x);
That is mostly impossible to implement with block-level scope.
In the above example the function will initially be executed passing the value of the outer x variable to it, before the function is invoked a new execution context is setup, that initializes a new lexical scope, where the y formal parameter is bound to it.
After that, the function expression is executed again -if y is not 0- initializing on each execution a completely new lexical scope.