<!--

// BEGIN POP-UP WINDOW //////////////////////////////////////

function popupWin(theURL,winName,features) { //v2.0

  window.open(theURL,winName,features);

}

// END POP-UP WINDOW //////////////////////////////////////



// BEGIN Selector without Popup Script //////////////

function jumpMenu(targ,selObj,restore){

  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");

  if (restore) selObj.selectedIndex=0;

}

// END Selector without Popup Script //////////////



// BEGIN Selector with Popup Window Script //////////////

function jumpMenuPopup( obj ) {

	var SelectedIndex = document.frmSelectors.slctQuickFind.selectedIndex; 

	if (obj.options[obj.selectedIndex].value != "0") window.open(obj.options[obj.selectedIndex].value, "popWin");

	obj.options[0].selected = true; // default back to top of list //

}

// END Selector with Popup Script ///////////////



// BEGIN Selector with Business Disclaimer Popup Script //////////////

function jumpMenuBizPopup( obj ) {

	var SelectedIndex = document.frmSelectors.slctCNLBusiness.selectedIndex; 

	if (obj.options[obj.selectedIndex].value != "0") {

		if (obj.selectedIndex > 7)           // Index number of last entry not needing disclaimer//

			window.open('/popDisclaimer.asp?popURL=' + obj.options[obj.selectedIndex].value, "popDiscWin", 'height=350, width=500, status=yes');

		else 

			window.open(obj.options[obj.selectedIndex].value, "popExternalWin");

	}

	obj.options[0].selected = true; //default back to top of list //

}

// END Selector with Business Disclaimer Popup Script ///////////////



// BEGIN Link Back to Main Window Script ///////

function goMainWin(url) {

	window.opener.focus();

	window.opener.location.href = url;

	window.close();

}

// END Link Back to Main Window Script ///////



// BEGIN Popup Disclaimer for External Links Script ///////

function popDisclaimer(url) {

	window.open('/popDisclaimer.asp?popURL=' + url, 'popDiscWin', 'height=350, width=500, status=yes');

}

// END Popup Disclaimer for External Links Script ///////



// BEGIN Popup Definition Script ///////

function popDefinition(term) {

	window.open('/popDefinition.asp?term=' + term, 'popDefWin', 'height=230, width=400, status=yes');

}

// END Popup Definition Script ///////

//-->