var fDesc=new Array();
fDesc[0] = "Readefine Desktop beautifies RSS,Google Reader articles,plain text and HTML for easy reading. View multiple articles together in a beautiful magazine layout or read one article at a time.
Features:
- Beautiful multi-column, newspaper like layout for RSS and Google Reader.
- Dislike scrolling text? Readefine divides text into multiple pages for easy reading.
- Mark these as Read - The "Next Page" button in Magazine Layout marks the articles shown to you as read (in Google Reader), then gets more content.
- Looks great no matter what screen size.
- Use keyboard shortcuts like and - to change font size. Shift J to justify text.
- Instapaper, ,Twitter, ReadItLater Support.
- The desktop version contacts Google directly and only talks to Readefine servers for self-updating.
- Resizes pictures and videos to fit within the column.
- Re-flows text according to the available size.
- Makes long plain text files beautiful and also sections them for performance.
- Removes stray newlines, empty p, br tags.
- Supports drag and drop of text/rss/html.
- Copy paste or load a file from your computer (load, not upload)";
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 = '';
}
}