var fDesc=new Array();
fDesc[0] = "Pawn Wizard Deluxe is an affordable and easy-to use pawn shop software. Pwan Wizard Deluxe is customer orientated, pawns and purchases are handled on a single screen, has administrative and compliance features and it can generate reports of your activity.
Main features:
-Lookup Customers quickly with any portion of their name
-Magnetic, 2D barcode or OCR Scan of Driver’s License for quicker Customer data entry or lookup
-Instant Loan Calculations
-Automatically stores Customer’s current and past addresses and photos and allows you the ability to view previous addresses and photos along with the dates they were modified";
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 = '';
}
}