var citylimArray =  new Array("('ARCATA','',true,true)",
"('BLUE LAKE')",
"('EUREKA')",
"('FORTUNA')",
"('GARBERVILLE')");


var inVicinityArray =  new Array("('ARCATA','',true,true)",
"('BLUE LAKE')",
"('EUREKA')",
"('FORTUNA')",
"('GARBERVILLE')");

var CountyArray =  new Array("('ALL LOCATIONS','',true,true)",
"('ALL LOCATIONS')");

function populateVicinity(inForm,selected) {
var selectedArray = eval(selected + "Array");
while (selectedArray.length < inForm.vicinity.options.length) {
inForm.vicinity.options[(inForm.vicinity.options.length - 1)] = null;
}
for (var i=0; i < selectedArray.length; i++) {
eval("inForm.vicinity.options[i]=" + "new Option" + selectedArray[i]);
}
if (inForm.location.options[0].value == '') {
inForm.location.options[0]= null;
if ( navigator.appName == 'Netscape') {
if (parseInt(navigator.appVersion) < 4) {
window.history.go(0);
}
else {   	
if (navigator.platform == 'Win32' || navigator.platform == 'Win16') {
window.history.go(0);
            }
         }
      }
   }
}
