﻿// Google Maps -> Show map location
function ShowMapLocation (sLocation)
{
    window.open("/getmapinfo.aspx?location=" + sLocation, "newWin", "width=610,height=535,status=0,scrollbars=0");
    return false;
}
    
// Google Maps -> Get map location
function GetMapLocation (sFieldID)
{
    window.open("/getmapinfo.aspx?id=" + sFieldID, "newWin", "width=610,height=670,status=0,scrollbars=0");
    return false;
}
