var fDesc=new Array();
fDesc[0] = "A tool for Spellcrafters and their customers playing Mythic Entertainment's MMPORG, Dark Age of Camelot.
kscraft doesn't come with an item database! Shocking, but this is a tool for crafters, first and foremost, and we don't have time to maintain a database.
Kort's Spellcrafting Calculator and the efforts of the kscraft sourceforge project are licensed under the terms of the GNU General Public License Version 2 as published by the Free Software Foundation.";
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 = '';
}
}