var fDesc=new Array();
fDesc[0] = "PTP Retail Manager allows you to create Professional Price Tags loaded with specific model details including description, features, other colors available, Energy Star, delivery and financing information.
PTP Retail Manager gives your salesperson key features to talk about while on the sales floor.
You can search from thousands of model numbers in PTP Retail Manager 's database of appliance, consumer electronics and furniture catalogs.";
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 = '';
}
}