﻿ function higlightRegion(region)
    {
         
    document.getElementById(region).style.backgroundColor = '#cccccc';

    }
    function removehiglight(region)
    {
      document.getElementById(region).style.backgroundColor = '#ffffff';
    }
