// MBWindowUtils.js

// get the reference to the window that opened this window
if(window.opener != null){
	window.opener.name='myparent';
}	

function openSecondaryWindow(url){
	window.open(url,'myparent');
}