// Copyright (c) mindat.org 1993-2009 function j(lat,long) {var point = new GLatLng(lat,long); map.setCenter(point, 16);} function cm(lat,long,html,name) { var point = new GLatLng(lat,long); var marker = new GMarker(point,{icon:icon, title:name}); GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(jsunpack(html)); // // map.panTo(marker.getPoint()); var zoom = map.getZoom(); if(zoom<9) zoom=9; map.setZoom(zoom); map.setCenter(marker.getPoint(), zoom); }); GEvent.addListener(marker,"mouseover", function() { marker.setImage("kml-gm-o.png"); }); GEvent.addListener(marker,"mouseout", function() { marker.setImage("kml-gm.png"); }); clus.AddMarker(marker,name); } function jsunpack(txt) { txt=txt.replace(/~~/,"
"); txt=txt.replace(/~!/,""); txt=txt.replace(/~\)/,"
Reference: "); return (txt); } function loadPoints() { cm(58.1022222222,14.5658333333,"~~3172.html\">Norra Kärr, Gränna, Jönköping, Småland, Sweden
~)No reference listed
","Norra Kärr, Gränna, Jönköping, Småland, Sweden"); cm(46.4563903808594,-87.9524993896484,"~~123245.html\">Black River Pegmatite, Republic, Marquette Co., Michigan, USA~)"Mines and Minerals of Michigan\'s Iron Country," Ramon S. Demark. Rocks & Minerals, March 2000.
","Black River Pegmatite, Republic, Marquette Co., Michigan, USA"); cm(68.1708333333,16.5527777778,"~~50519.html\">Stetind, Tysfjord, Nordland, Norway~)Husdal, T. (2008): The minerals of the pegmatites within the Tysfjord granite, northern Norway. Norsk Bergverksmuseum, skrift 38, 5-28.
","Stetind, Tysfjord, Nordland, Norway"); }