document.write('This is the frame named "'+self.name+'"'); // visible content
function handle_it(e) // ordinary event handler, e is the event
{
alert("Caught by frame: " + window.name);
if ( window.name == "first" )
alert("Preventing infinite loop");
else
return top.first.handleEvent(e);
return true;
}
window.onMouseDown = handle_it; // assign handler
window.captureEvents(Event.MOUSEDOWN); // in this case, filter just one event