var map;

function contact_map_toggle()
{
	map = document.getElementById('contactMap');
	if (map.style.visibility == 'hidden')
	{
		map.style.visibility = 'visible';
		map.style.height = '300px';
	}
	else
	{
		map.style.visibility = 'hidden';
		map.style.height = '0px';
	}
}