Cの「関数のポインタ」みたいに
 var _a = window.alert;
 _a('test');
は出来るのに
 var _w = document.write;
 _w('test');
が出来ないのは何故ですか?