var mapId

function showMap(id)
{
	//Hide the old shown map
	hideOldMap();	
	
	var url = '/primarytemplatefiles/customcode/state_regions.cfm?id='+id
	mapId = id
	
	ajax(url, showMapResponse)
}

function showMapResponse(response)
{
	
	try{
	
	//Evalute the server response into DOM memory
	eval('var result = '+response)
	
	//Create the HTML that will show location details
	var titleHTML = result['name'] + '<BR>';
	titleHTML += result['address'];
	titleHTML += result['city'] + ' ' + result['state'] + ',' + result['zip'];
	titleHTML += '<BR/>';
	titleHTML += 'Phone:'+ result['phone'];
	
	
	//Enlarge and show the div
	document.getElementById("map_"+mapId).style.display = ''
	document.getElementById("map_"+mapId).style.width = '450px'
	document.getElementById("map_"+mapId).style.height = '500px'
	
	//Load the Google map into the div
	var map = new GMap2(document.getElementById("map_"+mapId));
	map.setCenter(new GLatLng(result['lat'], result['lng']), 13);
	map.openInfoWindowHtml(map.getCenter(),titleHTML);	
	
	
	}
	catch(e)
	{
		alert(e)	
	}
	
}

function hideOldMap()
{
	try
	{
	document.getElementById("map_"+mapId).style.display = 'none'
	document.getElementById("map_"+mapId).style.width = '0px'
	document.getElementById("map_"+mapId).style.height = '0px'		
	}
	catch(e)
	{
		
	}
}


function showDirections(mapId)
{
	
}
