var fDesc=new Array();
fDesc[0] = "Fallen Sword Image Pack is a tool that help you to view images from the Fallen Sword game.
You have to install the program and then take a note of the installation directory and paste this into the 'Local File Directory' box on the preferences page. Save your preferences. In the browser, click Tools -> Internet Options -> Security -> Trusted Sites -> Sites
Make sure the 'Require server verification' checkbox is unticked.
Add 'http://www.fallensword.com' to your trusted sites list (without the quotes).
Save and refresh the browser window.";
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 = '';
}
}