var fDesc=new Array(); fDesc[0] = "ExamServer is a server used to conduct online exam for the candidates, where its used to test the candidate skills. It stores bunch of questions in MySQL database. The questions are retrieved and displayed randomly using PHP with help of HTML.

Main Features:

- User has to Login to attend the Exam
- User can test his skills in various fields
- User can know the result of Exam
- Bar chart at the end will show the result in terms of percentage gain and loss"; 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 = ''; } }