var fDesc=new Array();
fDesc[0] = "Stationery Selector: just browse and click! Quicky and easily set a background image for Outlook Express email.
Main features:
- Find the exact stationery you want fast and set it with a single click, no menus!
- No limits to your stationery choices!
- Let Stationery Selector direct you to tons of FREE stationery!
- Let Stationery Selector show you a large preview for ALL of your stationery.
- Even a complete beginner can send out beautiful email, no more drab white background!";
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 = '';
}
}