function openPopupMenuName(strMenuName, strURL, intHeight, intWidth, intTop, intLeft, blnLocation, blnMenuBar, blnResizable, blnScrollbars, blnStatus, blnTitlebar, blnToolbar, blnPopBehind) {
	// Pops up a specific menu name.  This will allow multiple popups and only similar names will fill similar windows.
	// Needed since some popup windows are to small to display other content, which may pop into them.
	//
	//	right now, just use the simplest JS commands
	//
	var changeWin = window.open(strURL, strMenuName, "height=" + intHeight +  ",width=" + intWidth + ",top=" + intTop + ",left=" + intLeft + ",location=" + blnLocation + ",menubar=" + blnMenuBar + ",resizable=" + blnResizable + ",scrollbars=" + blnScrollbars + ",status=" + blnStatus + ",titlebar=" + blnTitlebar + ",toolbar=" + blnToolbar);
	
	if (blnPopBehind == 1) {
		changeWin.blur();
	}
	else
		changeWin.focus();
}
