﻿function AREAmouseOver(id,title)
{
document.getElementById('mapimg').src = "images_index/map/" + id;
document.getElementById('ctl00_ContentPlaceHolder1_regionLB').innerHTML = title;
}
function AREAmouseOut()
{
document.getElementById('mapimg').src = "images_index/map/map.gif";
document.getElementById('ctl00_ContentPlaceHolder1_regionLB').innerHTML = "";
}