﻿function zoomCity()
{
    var theMap=getMap();
    if(theMap.isBusy() || theMap == null)
    {
        setTimeout("zoomCity()", 500);
    }
    else
    {	
        myMap.zoomWidth(55.159905,-118.818377,19.5,"km");
    }
}

function zoomCemetery()
{
    var theMap=getMap();
    if (theMap.isBusy() || theMap == null)
    {
        setTimeout(zoomCemetery, 500);
    }
    myMap.zoomWidth(55.155060,-118.832859,550,"m");
}