function map_zoom_in()
{
	document.all.map_img.style.height = "600";
	document.all.map_img.style.width = "469";

	// this knocks the image out of the layout, so IE doesn't try to rearrange the layout around the newly expanded map
	// which led to some nasty flickering
	document.all.map_img.style.position = "absolute";
}

function map_zoom_out()
{
	document.all.map_img.style.height = "300";
	document.all.map_img.style.width = "235";
}



function acdc_map_zoom_in()
{
	document.all.acdc_map_img.style.display = "block";
	document.all.acdc_map_img.style.position = "absolute";
	
	//document.all.map_img.style.width = "600";

	// this knocks the image out of the layout, so IE doesn't try to rearrange the layout around the newly expanded map
	// which led to some nasty flickering
	//document.all.map_img.style.position = "absolute";
}

function acdc_map_zoom_out()
{
	document.all.acdc_map_img.style.display = "none";
	
	//document.all.map_img.style.width = "300";
}