Overwriting document.open creates a variable/function named open directly on the document object. However, the original function was not on the object itself but its prototype - so you can indeed restore it.
The open function is from HTMLDocument.prototype so you can access it using HTMLDocument.prototype.open.
To call it directly, use .call() to specify the object to use it on:
HTMLDocument.prototype.open.call(document, ...);
You can also restore document.open it by simply assigning it:
document.open = HTMLDocument.prototype.open;
However, remember that HTMLDocument and thus document are host objects and it's usually a good idea not to mess with them - especially in IE things are likely to go haywire if you do so.