// -----------------------------------------------------------------------------------------

	function openWindow (popurl, width, height) {
/* 		popurl = "infowindow.php"; */
		popwindow = window.open('','content', 'scrollbars=yes,resizable=no,status=no,width=' + width + ',height=' + height)
		popwindow.location.href = popurl;
		popwindow.focus();

	if (popwindow.opener == null) {
		popwindow.opener = window;
		}
		popwindow.opener.name = "opener";
	} // function openWindow (width, height, popurl) {

// -----------------------------------------------------------------------------------------

	function go_anchor (e) {
		var go_name = e.options[e.selectedIndex].value;
		if (go_name != "") {
			window.location = ("#" + go_name);
			// alert (e.options[e.selectedIndex].value);
		} // if (go_name != "none") {
	} // function go_anchor (e) {

// -----------------------------------------------------------------------------------------

//	function go_filter (e) {
//		var go_name = e.options[e.selectedIndex].value;
//		if (go_name != "") {
//			window.location = ("?page=programs&form_data[filter_criteria][subcategory]=" + go_name);
//			// alert (e.options[e.selectedIndex].value);
//		} // if (go_name != "none") {
//	} // function go_filter (e) {

// -----------------------------------------------------------------------------------------

	function disable_form_elements (my_form_id, state) {

		for (i = 0; i < document.forms[my_form_id].elements.length; i ++) {
			e = document.forms[my_form_id].elements[i];
			e.disabled = state;
		}

	} // function disable_form_elements () {

// ----------------------------------------------------