var fDesc=new Array();
fDesc[0] = "The NCR Flip-Pix® Software is used to place your photos and text into the correct positions to print on the NCR Flip-Pix Paper. Each NCR Flip-Pix Format is created using your images and text and saved as a project. The NCR Flip-Pix Software takes you through the creation of a project – step-by-step. A finished project is printed
on the appropriate NCR Flip-Pix Paper and saved to be used again. Saved projects can be opened for repeated use, or they can be changed and saved with a different name.
This is the suggested method to use if you have several projects with similar images or
text. You can selectively replace any photo or text.";
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 = '';
}
}