var fDesc=new Array();
fDesc[0] = "Cookbook is a recipe database management system. In addition to the normal editing functions, features include:
Create as many cookbooks as you wish
Create as many categories as you wish
For individual recipes: edit, print, copy, email, export to PDF or TXT files
For categories and full cookbook: print, export to PDF or RTF
Recipe entry: 'As you type' spell checking, auto completion of words
Search: By recipe name or recipe instructions in whole cookbook or by category
Print: Select various page formats, customize font and page borders
Import recipes that are in TXT format or cut and paste from the web";
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 = '';
}
}