var fDesc=new Array(); fDesc[0] = "Ptolemy is an interactive map for CRPGs that allows you to easily add, edit and find locations. It was originaly designed for Morrowind for which a fully populated map (covering Vvanderfel and Solstheim) is available.

Ptolemy uses a static bitmap as the background for the map, onto which you can place location markers. Each location marker can be given a type (such as settlement, cave or ruin) and can be assigned one or more factions (such as Dwemer, Fighter's Guild or Telvanni). You can then:

- Find locations by name.
- Filter the displayed locations by name, type or faction. So if you're trying to complete your Dwemer collection you can just see all the Dwemer ruins.

Although Ptolemy comes with a map for the Morrowind game, it could be used to map any game for which a bitmap of the map is available."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }