I\'ve know that in window.open(url,name... the name basically restricts a browser not to open a popup again , if a popup with the name already exists
For example Page A
The JS scripts in two tabs in Chrome are ran in separated contexts and cannot thus share the information on which windows did one open, one to another. This behavior is a security feature and I believe it is better explained by Google, over here.
Depending on the level of bulletproofing required by your app, you should use either AJAX, cookies and even persistent storage to check for that window's existence and state.