var fDesc=new Array();
fDesc[0] = "Pebble 4 card printer is the ideal solution to print your badges on demand or in volume. Pebble 4 is suitable for any type of application that requires single-sided printing of plastic cards. Pebble offers a high quality finish, as shown by the well-cut and robust injected plastic body and the quality-driven assembly of the different printer modules.
Advanced encoding technologies can be combined in your Pebble 4 printer. Magnetic Stripe encoder, Smart contact station encoding unit and Contactless encoding unit, all of these features can be seamlessly combined, while the Mag encoding option is so flexible it can even be deployed on-site.";
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 = '';
}
}