var fDesc=new Array();
fDesc[0] = "CX is an application which allows you to upload data through cloud.
Main Features:
- Upload all of your files without ever running out of space. Get all the room you need with plans from 10GB to 175GB.
- Take the hassle out of sharing large files. Send links, share on social networks and password protect any file.
- With support for most types of media, you can easily view, watch and listen to your files.";
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 = '';
}
}