var fDesc=new Array();
fDesc[0] = "Arthropod is really easy to use. Basically the only thing you need to do is import the Debug class, write a log message with the log function, start Arthropod and publish your site / AIR application.
Arthropod currently supports the following:
- all characters (should include asian characters, not tested)
- OSX and Windows (Tested on some Linux dists.)
- AIR Runtime 1.0 and above
- all major browsers (Internet Explorer, Firefox 2.0 and above, Safari)
- SWFObject 1.5 and above
- optional ProFont";
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 = '';
}
}