var fDesc=new Array();
fDesc[0] = "-Add text bubbles to images and screen captures quickly
-Copy and Paste images directly to and from Fizznotes
-Paste screenshots directly to Fizznotes
-Use multiple image frames for an entire presentation
-Protect your document with user password
-Easy to use interface for maximum efficiency
-Change properties of bubbles such as color and font
-Crop image or change image canvas size
-Use rectangles or line tool to highlight areas of interest";
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 = '';
}
}