function jumpPage(newLoc) {
   if( newLoc.name == 'newLocation1' ) newLoc.form.newLocation2.selectedIndex = 0;
   if( newLoc.name == 'newLocation2' ) newLoc.form.newLocation1.selectedIndex = 0;
   newPage = newLoc.options[newLoc.selectedIndex].value;
   newPage = verifyAnchor(newPage);
   if (newPage !="") {
      //document.selector.test.focus();
      window.location.href=newPage;
   }
}

function jumpDirect(newLoc) {
   newPage = verifyAnchor(newLoc);
   if (newPage !="") {
      //document.selector.test.focus();
      window.location.href=newPage;
   }
}

function newWindow(URL){
   movieWindow=window.open(URL,'movieWin','width=780,height=500,toolbar=yes,location=yes,scrollbars=yes,resizable=yes')
}


function verifyAnchor(name) {
   var retVal ="#Unavailable";
   //alert( name );
   if(!document.getElementById || !document.getElementsByTagName) return retVal;
   var anchors = window.document.getElementsByTagName("A");
   for(var step = 0; step < anchors.length; step++) {
      //alert("#"+anchors[step].name+' --- '+name);
      if ("#"+anchors[step].name == name) {
         retVal=name;
         return retVal;
      }
   }
   alert("At present there is no Screening in your area.");
   return retVal;

}



