// 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(52.7941666667,-8.26833333333,"~~2061.html\">Mogul Mine (Garryard), Silvermines District, Co. Tipperary, Ireland~)Moreton, S. (1999) Mineralogical Record, 30, 99-106. Colin Andrew (Personal Communication)
","Mogul Mine (Garryard), Silvermines District, Co. Tipperary, Ireland");
cm(19.033332824707,-100.050003051758,"~~11681.html\">Guitarra Mine, Temascaltepec de González (Temascaltepec), Mun. de Temascaltepec, Mexico, Mexico~)Camprubi, A., Canals, A., Cardellach, E., Prol-Ledesma, R.M., Rivera, R., 2001, The La Guitarra Ag-Au low-sulfidation epithermal deposit, Temascaltepec district, Mexico: vein structure, mineralogy, and sulfide-sulfosalt chemistry. Society of ...
","Guitarra Mine, Temascaltepec de González (Temascaltepec), Mun. de Temascaltepec, Mexico, Mexico");
}