var fDesc=new Array(); fDesc[0] = "This software offers a solution for users who want to create employee-warning templates in MS Word. The user simply enters the date, employee ID, name, job title, the manager's name and the department before entering the description of the infraction, a plan for improvement and the eventual consequences of inaction. For example, "You are consistently late" "Get up earlier!" "You will be fired!" The preview pane will show the employee and manager's details and will have check boxes to indicate the type of warning (i.e. first second or final) and the type of offense with the details input by the user displayed below. There is a zoom in and out option to allow checking the general appearance and details in the template before saving the results to a Word file. This user-friendly software makes creating clear and concise employee warnings both quick and easy. Word 2000 or higher required."; 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 = ''; } }