var fDesc=new Array();
fDesc[0] = "It shows your WoW character’s armory data on your Windows SideShow device.
Main features:
- Character information (level, guild, base stats, etc)
- Character pic
- Full inventory with item pics and stats
- Talent tree breakdown
- Support for your main character and up to 10 friends
- Updates every 6 hours or on demand
- Many more features coming soon, such as notifications of level, rep, and gear changes
System requirements:
- Windows Vista (32-bit or 64-bit)
- Windows SideShow device or simulator";
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 = '';
}
}