var fDesc=new Array();
fDesc[1] = "visually appealing resume in a few minutes. The user friendly interface of the software is very helpful in building your own custom resume quickly and effortlessly.";
fDesc[2] = "Word file, HTML, format Texte ou HRXML file.";
fDesc[3] = "your circumstances are, our resume builder program writes the most appropriate resume format for you.";
fDesc[4] = "career objectives, and deliver those to multitudes of employers seeking just the qualifications you possess.";
fDesc[5] = "skill summaries. Make it the basis of your personal web site. Word/text/clipboard formats and career advice too.";
fDesc[6] = "upload your resume to prospective employers with a few mouse clicks; print or export to popular formats.";
fDesc[7] = "applications, schedules, interviews, and much more. Integrated email and browser. Interact with MS Outlook. Much more.";
fDesc[8] = "\"mirrored\" website in your browser, and you can browse the site as if you were viewing it online.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}