			<!--
			var dateEdit;
			var dateSave;

			function updateSelector(selectCtrl, itemArray) {
				var i, j;

				// empty existing items
				for (i = selectCtrl.options.length; i >= 0; i--) {
					selectCtrl.options[i] = null;
				}

				j = 0;
				if (itemArray != null) {
					//add new items
					for (i = 0; i < itemArray.length; i++) {
						selectCtrl.options[j] = new Option(itemArray[i][0]);
						if(itemArray[i][1] != null) {
							selectCtrl.options[j].value = itemArray[i][1];
						}
						j++;
					}
				} else {
					selectCtrl.options[0] = new Option("- None -");
				}
				// select first item (prompt) for sub list
				selectCtrl.options[0].selected = true;
			}

function fillSelectors() {
	updateSelector(document.search.region,((document.search.country.selectedIndex == -1) ? null : regions[document.search.country.selectedIndex]));
}

function disableAll() {
	s = document.search;
}

function changeRegion(regionid) {
	for(i=0&nbsp;i < document.search.region.length&nbsp;i++) {
		if (document.search.region.options[i].value == regionid) {
			document.search.region.selectedIndex = i;
			break;
		}
	}
}

    function enlarge(image) {
			 imagewindow=window.open(image,'imagewindow','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,width=400,height=400');
    }

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

		function jumpTo(URL_List){
				    var URL = URL_List.options[URL_List.selectedIndex].value;
									   window.location.href = URL;
		}

// -->

