<!--
function popup(map) {
var iMyWidth;
var iMyHeight;			
 if (navigator.appName.indexOf("Microsoft")!=-1
  || navigator.appName=="Netscape" 
     && parseInt(navigator.appVersion)>4
 ) {
      iMyWidth = (window.screen.width/2) - (230 + 10)
      iMyHeight = (window.screen.height/2) - (200 + 50)
		    newwindow=window.open('','Window_Title','status,height=400,width=460,resizable=no,left=' + iMyWidth + ',top=' + iMyHeight + ',screenX=' + iMyWidth + ',screenY=' + iMyHeight + ',scrollbars=no') }		
else{
	    	iMyWidth = (window.screen.width/2) - (230 + 10)
      iMyHeight = (window.screen.height/2) - (200 + 50)
		newwindow=window.open('','Window_Title','status,height=400,width=460,resizable=no,left=' + iMyWidth + ',top=' + iMyHeight + ',screenX=' + iMyWidth + ',screenY=' + iMyHeight + ',scrollbars=no') 
      }		
      newwindow.document.write('<html><head><title>' + "Map" + '</title></head><center><body BGCOLOR="black"><FONT  COLOR="WHITE"><strong>Changing Boundaries</strong><br><br>')
		newwindow.document.write('<EMBED SRC="' + map + '" PLUGINSPAGE="http://quicktime.apple.com" WIDTH=320 HEIGHT=252  CONTROLLER=true LOOP=false AUTOPLAY=true><p>' + '</body></html>')		
		    newwindow.document.writeln('<a href="javascript:window.close()">CLOSE THIS WINDOW</a><br><br><FONT SIZE="-1" COLOR="white">Be patient! This movie may take a while to download<br>because of web traffic or image size.</center>')
      newwindow.document.close();
      }
 -->