perdon pero solo IE puede adivinar que "pepe" es una referencia al iframe, si queres hacer las cosas bien es asi:
Código:
function f() {
var ifrm = document.getElementById('pepe');
var loc = (ifrm.location) ? ifrm.location : ifrm.contentWindow.location;
}
<iframe id="pepe" src="tupagina.html"></iframe>
<input type="button" onclick="f()" />