function hiddenMap_click(id, mapId, areaId) {

}

function hiddenMap_hide(id, mapId, areaId) {
	document.getElementById('item_'+id).style.display = 'none';
	document.getElementById('item_'+activeItem).style.display = 'block';
	tmp = "tx_mwimagemap_img_";
	mapId = tmp + mapId;
	tmp = "tx_mwimagemap_altfefile_";
	areaId = tmp + areaId;
	document.getElementById(mapId).src = 'typo3conf/ext/mwimagemap/pi1/canvas.gif';

}

function hiddenMap_show(id, mapId, areaId) {
	document.getElementById('item_'+activeItem).style.display = 'none';
	document.getElementById('item_'+id).style.display = 'block';
	tmp = "tx_mwimagemap_img_";
	mapId = tmp + mapId;
	tmp = "tx_mwimagemap_altfefile_";
	areaId = tmp + areaId;
	document.getElementById(mapId).src = document.getElementById(areaId).src;
}