var fDesc=new Array();
fDesc[1] = "photographer, but I can understand where the need for this application comes from. Many times, when I snap a shot, I think I just got a Pulitzer snapshot. But, then, I find an old couple on the background of my picture, or a fence, or something like that.";
fDesc[4] = "(GML), Web Map Service (WMS), and Web Feature Service (WFS) standards. There is a great documentation on its website including its wiki section. OpenJUMP runs on Windows, Mac OS and Linux platforms. It will work in any platform that runs Java 1.5 or later.";
fDesc[6] = "more. Create photo-realistic, 3D walk-throughs of your proposals and design ideas. No CAD experience required.";
fDesc[7] = "skills. You can use the given template and objects like chairs, tables, pots, flowers, stairs and much more in your home design.";
fDesc[8] = "ideas come to life with soft shadows, accurate lighting, plants swaying in the wind, all in realtime 3D.";
fDesc[15] = "approved by DoD and NSA, therefore your privacy is fully protected.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}