function show_map()
{
	document.getElementById('map_content').style.display = 'block';
	document.getElementById('map_background').style.display = 'block';

	map_load();

}

function hide_map()
{
	document.getElementById('map_content').style.display = 'none';
	document.getElementById('map_background').style.display = 'none';
}
