var fDesc=new Array();
fDesc[0] = "GoVenture Personal Finance simulation is a realistic software simulation designed to help youth and adults learn about personal money management decisions in a fun and educational manner. Like a flight simulator for finance and life, GoVenture Personal Finance enables you to learn-by-doing. It’s easy to use, visual, interactive, and exciting!";
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 = '';
}
}