﻿// JScript File
function showMap(nLat, nLong, strDesc)
{
  var windowOpts = 'left=100,top=100,width=1100,height=800,toolbar=0,resizable=1';
  window2 = open(formatDisplayUrl(nLat, nLong, strDesc), "googleFromUtmmtm",windowOpts);
}
function formatDisplayUrl(lat, lon, strDesc)
{
  strDesc =  "+(" + strDesc + ")"; 
  return "http://maps.google.com/maps?q=" + lat + "+" + lon  + strDesc + "&t=h&z=10";
}