/*
JS code to cope with location map plotting
*/
function ChangeMap() {
   var index = document.ChangeScale.scale.selectedIndex;
   if (index == 0) {
      document.ChangeScale['Map'].src = 'http://www.multimap.com/map/gif.cgi?X=394990&Y=810701&width=500&height=300&scale=10000&client=light';
      }
   if (index == 1) {
      document.ChangeScale['Map'].src = 'http://www.multimap.com/map/gif.cgi?X=394990&Y=810701&width=500&height=300&scale=25000&client=light';
      }
   if (index == 2) {
      document.ChangeScale['Map'].src = 'http://www.multimap.com/map/gif.cgi?X=394990&Y=810701&width=500&height=300&scale=50000&client=light';
      }
   if (index == 3) {
      document.ChangeScale['Map'].src = 'http://www.multimap.com/map/gif.cgi?X=394990&Y=810701&width=500&height=300&scale=100000&client=light';
      }
   }


