var lightbox_map_active = null;
var lightbox_map_info = 'default';

function open_map_lightbox () {
	document.getElementById('lightbox-heightfix').style.height = document.getElementById('canvas').offsetHeight+'px';
	$('lightbox').appear();
	$('lightbox-map').appear();
}

function close_map_lightbox () {
	$('lightbox-map').fade();
	$('lightbox').fade();
}

function lightbox_map_activate_geopos (seq, clickable) {
	if (lightbox_map_active != null) {
		lightbox_map_active.className = '';
	}
	clickable.className = 'active';
	lightbox_map_active = clickable;
	document.getElementById('lightbox_map_info_'+lightbox_map_info).style.display = 'none';
	lightbox_map_info = seq;
	document.getElementById('lightbox_map_info_'+lightbox_map_info).style.display = 'block';
}
