var fDesc=new Array();
fDesc[0] = "Features:
Increase your sales made at your website which in turn explodes your profits.
Features:
-Quickly create a page that entices your web visitors to purchase your product when they visit your website
-Increase your sales made at your website which in turn explodes your profits naturally!
-User-friendly interface makes it easy to replicate the whole page creation process for all your web pages!
-Easily create a desire in your web visitors to buy your product!";
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 = '';
}
}