var fDesc=new Array();
fDesc[0] = "Fractal Mapper is a high-powered mapping system that lets gamers create a wide variety of of maps - dungeons, continents, cities, and more! With it's easy to use interface, powerful features, and unique capabilities, making high quality maps with Fractal Mapper is a breeze!
Main features:
- Fractal based drawing tools for realistic coastlines, rivers, and caverns.
- Create continent maps, city maps, dungeon maps, sci-fi deckplans, and more.
- Objects on your map can be individually selected, moved, rotated, and edited.
- Optimized support for .PNG images as mapping symbols.
- Place square or hex grids of any size on you map, with or without grid numbering.
- Print across multiple pages. Print the entire map or selected regions.
- Print to 1 inch scale for miniatures.
- Scripting interface to let you create new program features custom drawing tools using VBScript.
- Store your notes right on your map, and print out scenario listings.";
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 = '';
}
}