var fDesc=new Array(); fDesc[0] = "This utility is designed to add borders and titles to photos. It was created with astro photographers in mind, since it is quite common practice to treat astrophotos in this way before putting them on the web for display. It can of course be used on any type of photo, as it works on any image file.

The software runs on Windows only, and has been tested on XP and Vista Ultimate. It should run OK on other versions of Windows, but has not been tested."; 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 = ''; } }