﻿function areaHighLight(id, bOn) 
{
    var obj = document.getElementById(id);

    if (obj != null) {
        if (bOn)
            obj.style.background = "#d6dbe1";
        else
            obj.style.background = "";
    }
}
function codeAddress(address, destId) {
    geocoder = new google.maps.Geocoder();

    geocoder.geocode({ 'address': address }, function (results, status) {
        if (status == google.maps.GeocoderStatus.OK) {
            ctrl = document.getElementById(destId);
            ctrl.value = results[0].geometry.location;
        }
        else
            alert("Adressen hittades inte.");
    });
}
