var fDesc=new Array();
fDesc[0] = "Do you think `paperless' reporting is a pipe-dream? Think again! CopWrite is a quick, powerful, and easy way of creating and maintaining unlimited reports on any personal or laptop computer.
CopWrite lets you quickly and easily put together a very readable, comprehensive police report. Each report has a `Cover Sheet' that allows you to quickly cover the basics, and a `Narrative Sheet' that lets you go into as much detail as you need.
At any time, you can list all cases, or assemble a sub-list of certain cases based on search words/phrases/names, or find any one particular incident instantly.
Instead of paper reports that are hand-filed, mis-filed, and lost in endless filing cabinets (sound familiar?), CopWrite lets you maintain any number of police reports that are automatically filed, NEVER lost or misplaced, and always a snap to find, review, update, and/or print.
Try CopWrite yourself and see why it's the best program of its type you'll find anywhere!";
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 = '';
}
}