Change big frame
Change small frame

Change big frame back
Change small frame back

Change both frames to "1"
Change both frames to "2"

Explanation: this more traditional sytntax works for ie:

document.frames["small"].location.href = [URL];

however, safari and other browsers don't support this, so this more robust reference can be used:

document.getElementById("small").src = [URL];