function MM_openBrWindow(theURL,winName,features) { //v1.2
  window.open(theURL,winName,features);
}

var popup = null;
function popupwin(n,u,w,h) {
	popup = window.open(u, n, 'width=' + w + ',height= ' + h + ',resizable=yes,scrollbars=yes');
	if (popup != null) {
		if (popup.opener == null) popup.opener = self;
		window.name = 'FirstRegistry Popup';
		popup.location.href = u;
	}
}

//