var fDesc=new Array();
fDesc[0] = "Simple Recruitment System is a small application that enables you to create, view and manage a database of people who have applied for different jobs at a firm.
You can fill in the following information:
- Name
- Surname
- Phone number
- Department
- Interview date
- Test
- Evaluation period
- Memo
Additionally, you can add/view a person's CV and test. Search and Remove options are also available of course.";
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 = '';
}
}