5 var result
= {}, queryString
= location
.search
.substring(1),
6 re
= /([^&=]+)=([^&]*)/g, m
;
7 while (m
= re
.exec(queryString
)) {
8 result
[decodeURIComponent(m
[1])] = decodeURIComponent(m
[2]);
10 if (result
["nextOp"] == "click" && opener
.click
)
12 else if (result
["nextOp"] == "space" && opener
.pressSpace
)
14 else if (result
["nextOp"] == "notifyDone" && opener
.notifyDone
)