// jGlobFunc.js
// Global JavaScript Functions

//=========================================
// Display map links.
//<script language="JavaScript" type="text/javascript">show_map_links(51.2582,0.469658,"The Kettle Bridge, Barming")</script>
function show_map_links(
$sml_latt,
$sml_long,
$sml_desc
) 
{
	// Google.
	document.write("<a href=\"http://maps.google.com/maps?q="+$sml_desc);
	document.write("@"+$sml_latt+","+$sml_long+"&z=15\"");
	document.write(" title=\"Google Map\" target=\"_blank\">");
	document.write("<b>Google</b></a>");
	// Delimiter.
	document.write(" &bull; ");
	// Bing.
	document.write("<a href=\"http://bing.com/maps/default.aspx?v=2&lvl=15");
	document.write("&cp="+$sml_latt+"~"+$sml_long);
	document.write("&rtp=pos."+$sml_latt+"_"+$sml_long+"\"");
	document.write(" title=\"Bing Map\" target=\"_blank\">");
	document.write("<b>Bing</b></a>");
	// Delimiter.
	document.write(" &bull; ");
	// Yahoo.
	document.write("<a href=\"http://maps.yahoo.com/#mvt=m&");
	document.write("lat="+$sml_latt+"&lon="+$sml_long+"&zoom=15");
	document.write("&q1="+$sml_latt+"%2C"+$sml_long+"\" title=\"Yahoo Map\" target=\"_blank\">");
	document.write("<b>Yahoo</b></a>");
	// Delimiter.
	document.write(" &bull; ");
	// OpenStreetMap.
	document.write("<a href=\"http://www.openstreetmap.org/?");
	document.write("mlat="+$sml_latt+"&mlon="+$sml_long+"&zoom=14\"");
	document.write(" title=\"OpenStreetMap\" target=\"_blank\">");
	document.write("<b>OpenStreetMap</b></a>");
}
/*******************************************************/

