var fDesc=new Array();
fDesc[0] = "This program is a use-case tutorial designed to help students understand the basic principles of General Accounting practices. Through the use of pre-defined templates and financial statements, the user learns how transaction entries affect company accounts and fiscal stability.
System Requirements:
- Microsoft® Windows XP, Windows® 2000, Windows NT® 4.0 with Service Pack 4, Windows® Me, Windows® 98
- A hard disk with a minimum of 5 megabytes (MB) available space.
- Memory requirements: Windows 98, ME: A minimum of 32 MB of RAM (memory); Windows NT, 2000 and XP: A minimum of 64 MB of RAM (memory).
-A video card that will support at least 256 colors.
- Video resolution of at least 800 x 600 pixels (1024 x 768 or higher recommended).";
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 = '';
}
}