Window.open in LC

window.open() method from LC is always opening the link in the already opened window.

is there a way where in I can have different windows open for different links???

My code is as simple as this:

For linkA:

Call workspace.SetTargetFrame(“_blank”)

Call workspace.URLOpen("javascript:window.open('http://www.google.com','windowA')")

For linkB:

Call workspace.SetTargetFrame(“_blank”)

Call workspace.URLOpen("javascript:window.open('http://www.google.com','windowB')")