var fDesc=new Array();
fDesc[0] = "Find A Job is a software program that gives you the tools and strategies to help your find a job. The software features includes:
- A mock interview tool that lets you improve your interviewing skills.
- A job search engine that lets you apply for jobs on all the major job sites.
- Simple strategies to help you quickly find a job.
- Daily performance checklist that keeps you focused on finding a job.
- Daily mantra exercise that gives you the mental focus needed to find a job.";
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 = '';
}
}