You can try this, it will help you to open and observe multiple windows, check here
Javascript
var windows = {};
$('a').click(function(e){
var url = $(this).attr('href');
var name = $(this).attr('id');
if(windows.hasOwnProperty(name) && !windows[name].closed )
{
windows[name].focus();
}
else
{
windows[name]=window.open (url,name,"status=1,width=300,height=300");
}
});
Your Links
<a href="http://google.com" id="google">Google</a>
<a href="http://yahoo.com" id="yahoo">Yahoo</a>?
DEMO.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…