var fDesc=new Array();
fDesc[0] = "Stay ahead of the pack in today's competitive job market with a well-designed resume.
With millions of job seekers posting their resumes online and unemployment rates at an all-time high,
A winning resume must grab the employer's attention and instantly impress!
Your resume has a few seconds to capture a recruiter's attention—or your years of hard work and education can be wasted. You need a winning resume whether you're entering the job market for the first time or making a transition in the middle of a successful career.
In this unforgiving environment, your professional future deserves the best resume tool available .";
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 = '';
}
}