var fDesc=new Array();
fDesc[0] = "PSPCoverz is designed to make it easy to design your own 'skins' for your PlayGearPocket case from Logitech. Just add your own images, and you can see exactly what you'll get when you print.
Features:
- Easy to use! PSPCoverz comes with the template you need all set up.
- Use 2 different images, one for each side of your case.
- Resize images as needed to fit.
- WYSIWIG - No messing around in complicated paint programs with layers and templates.
- Save your unique 'Coverz as a new image for a simple reprint, or to share with friends.
- Clean, uncluttered interface.";
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 = '';
}
}