var fDesc=new Array();
fDesc[0] = "GenesisIV's landscape definition tools have always been a strong feature of the system and we get many requests to make these more easily available for use with other programs. Landformer Pro is the solution. This stand-alone program uses the Terragen .ter format as it's native file format and offers all the landscape definition features of GenesisIV in a focused package at a third of the price of GenesisIV.
Main features:
- It Defines landscapes from scratch using topographic maps
- Import data from graphics and digital terrain files
- Quickly manipulate and edit landscapes
- Use GenesisII plugins to enhance functionality.";
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 = '';
}
}