function locationMap(aForm,Maptype) {
  var maploc = "/locationmaps/map.asp?MAPTYPE="+Maptype;

  var id = aForm.maplist.options[aForm.maplist.selectedIndex].value;
  maploc = maploc + "&ID=" + id;     
  top.location = maploc;
}

function locMap(Maptype, id) {
  var maploc = "/locationmaps/map.asp?MAPTYPE="+Maptype;
  maploc = maploc + "&ID=" + id;     
  top.location = maploc;
  top.location = maploc;
}

function getNotes(noteURL) {
   	var xpos = screen.width - 650;
	if (noteURL.indexOf('http:') == -1) 
		noteURL = '../layernotes/'+noteURL+'.html'
	infoWin = window.open(noteURL,'infowin','width=640,height=480,toolbar=1,scrollbars=1,resizable=1,left='+xpos)
	infoWin.focus()
}