var fDesc=new Array();
fDesc[0] = "Have a design already set for imprinting? Then the Imprintor ArtMaker is for you. This easy-to-use, Windows-based software helps you layout and correctly position your artwork and type for output using a common inkjet or laser printer.
Minimum System Requirements :
- 133 mHz Pentium Processor or compatible
- Windows 98 2nd edition, Windows NT, Windows 2000 or Windows XP
- 64 MB RAM
- Monitor set to high color (16 Bit)
- CD-ROM Drive
- 500 MB of available hard drive space
- 1200 dpi in black resolution or better inkjet printer
- Printer must have option to Mirror/Reverse Image.";
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 = '';
}
}