

function test(input) {
 myArray = new initArray(" ","'","%","-","0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","_","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z");
 var ok = true;
 for (var j=0; j<input.length; j++) {
    var chr = input.charAt(j);
    var found = false;
    for (var k=0; k<68; k++) {
        if (chr == myArray[k]) found = true;
      }
    if (!found) ok = false;
  } 
 return ok;
}

 function fIn(x) {
   document.getElementById(x).style.textDecoration="underline";
   return true;
 }   
  function fOut(x) {
   document.getElementById(x).style.textDecoration="none";
   return true;
 }   
 
function jsBack() {

 return true;
}

function checkMe() {
 var lstA = document.getElementById("ddlArea");
 var lstC = document.getElementById("ddlCounty");
 var lstR = document.getElementById("ddlRAB");
 if (lstA.selectedIndex>0) {
 	if (lstC.options[lstC.selectedIndex].text=='== please select ==') {
 	    alert('please select a county or country\nor else select ANY from the first list\n(or you may find the \'Region\' selector more useful...)');
 	    return false;
 	}
 }
 return true;
}