var fDesc=new Array();
fDesc[0] = "Project PROFI v 2.1 was developed for use in personnel agencies or personnel department of small and middle sized enterprises.
Basic configuration of the project includes:
information about customers and another personnel agencies;
information about present vacancies;
information about persons looking for job;
information about signed labor contracts;
information about system users and user rights management;
mailing lists;
user profile support;
Besides, the project includes additional modules:
chat;
articles;
news;
The project can be expanded with additional modules by your request:
personnel testing systems;
automatic e-mail parsing systems;
automatic news posting systems (posts news on other web sites)
personnel trainings;
Changes made in version 2.1 of project:
site information and back office data are located in the same database;
registering of companies or another personal agencies;
mailing system (sending emails to registered users, job applicants and employers);
flexible search system (searching by contracts, unoccupied employees, etc).
Technologies: PHP, JavaScript, MySQL, Apache.";
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 = '';
}
}