/* dispatch to page from Quick Find */

function PgDispatch(opt) {
	/* Context: The form is a convenince for identifying values only. It is never submitted
	   as a true form. Two types of files can be present: HTML pages and PDF files.
	   If HTML -> dispatch to current page
	   If PDF  -> dispatch to new window
	   The form value for the SELECT box is the URL to either an HTML page or a PDF file.
	*/
	var x=document.getElementById(opt);
	var tgtPg = x.options[x.selectedIndex].value;
	if (tgtPg == '') { //if nothing is selected - do nothing
		//selected a separator - ignore and reset to "--Select--"
		document.getElementById("menuOpt").selectedIndex = 0;
		return;
	}
	if (tgtPg.indexOf('.pdf') == -1) {
		//Not a pdf, load to current window.
		parent.location.href=tgtPg;
		return;
	}
	//Obviously - a PDF - load to new window.
	var nw = window.open(tgtPg);
}

