var fDesc=new Array();
fDesc[0] = "GoVenture Accounting simulation enables you to gain practical accounting skills while running a virtual business. More than learning basic bookkeeping, GoVenture Accounting puts you in the role of a business owner where you can directly experience the impact and importance of accounting in a business.
Knowing the mechanics of accounting does not necessarily mean one has a strong understanding of accounting as a fundamental foundation of business and finance.
With GoVenture Accounting you learn by doing. Every transaction is entered in the context of a real business situation — a business that you operate for days, months, or years.
GoVenture Accounting is a modified version of GoVenture Micro Business with an enhanced accounting module that allows you to make accounting entries manually.";
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 = '';
}
}