This line is from my JSP file.
I opened this page by setting a target attribute in the tag like target =\"_TOP\", but the code below
target =\"_TOP\"
try this
onclick="var w=window.open(this.href,this.target); return w?false:true">pop a new window
or
pop a new window
the later you can get the handle:
var w = window.open('','mywin'); if (!w.closed) w.close()