var fDesc=new Array();
fDesc[0] = "RSSme is free, lightweight and user-friendly RSS editor.
Support creation and editor of RSS feeds. Implements visual and user-friendly editor of posts.
Key features:
Simple creation and management of post from dockable bar.
User-friendly and visual editor of posts.
Supports plain HTML tags: A, B, I, U, S and etc.
Supports insertion of images on WYSIWYG-mode.
Preview of HTML code on-the-fly.
Quick validation RSS feeds on official web site of W3C.
No has dialogs! No has modal! Only Your creativity!";
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 = '';
}
}