var fDesc=new Array(); fDesc[0] = "What's Where is a simple program for keeping track of your stuff. Use it to make a database of What you have and Where it's stored. Use its graphic maps to show you exactly where thing are.

What's Where is great for the places where you store things and often forget about them, like: boats, recreational vehicles, basements, garages, vacation homes. Its databases can be printed in various formats."; 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 = ''; } }