var fDesc=new Array();
fDesc[0] = "Xtreme Poll Generator is a free software to Create a customized and professional-looking voting poll for your website in just a few clicks.
Main features:
-Create an unlimited number of online polls running concurrently
-Easily publish a poll on any page or website of your choice using an embedding code function
-Instantly view voting responses which are updated real-time
-Monitor and analyze polling results which help answer your call to action";
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 = '';
}
}