function showLocation(offset) {

	var e;
	var c = 1;

	while (e = $('loc_' + c)) {
		Element.hide(e);

		if (e = $('lnk_' + c)) {
			e.removeClassName('clist_set');
			e.addClassName('clist_unset');
		}

		c++
	}

	if (e = $('loc_' + offset)) {
		Element.show(e);
		
		$('lnk_' + offset).addClassName('clist_set');
	}
}
function moveToMarker(markerid) {
	if (pins[markerid] !== undefined) {
		map.panTo(pins[markerid]);
		markers[markerid].openInfoWindowHtml(itemhtml[markerid]);
	}
}
