function show_map(mapid) {
	document.getElementById(mapid).style.top = '200px';
}

function hide_map(mapid) {
	document.getElementById(mapid).style.top = '-800px';
}