var fDesc=new Array();
fDesc[0] = "PageFocus Draw is an easy-to-use, and yet powerful desktop publishing program. It contains a broad range of tools for meeting your daily needs. Use it for creative drawing, document, newsletter, brochure, flyer, ID card, etc.
Main Features:
- Extensive set of graphic types including lines, curves, texts, multi-column texts, curved texts, tables, images, spreadsheets, etc.
- Easy-to-use tools for creating pattern drawing, color gradient, layer control, transparent attributes, unicode text, vertical text, and curved text.
- Readily available tools for positioning, alignment, grouping, resize, rotate, and repetition.
- Image editing and annotation.
- Powerful tools for creating interesting patterns.
- WYSIWYG editing.";
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 = '';
}
}