var fDesc=new Array(); fDesc[0] = "Provides access to functionality that allows vendors to process assignments through various stages in the assignment’s life cycle. Vendors can use the Accept option on the Assignment Actions menu of the Assignment Detail interface of an assignment to accept it and begin recovery activity on the assignment. The program allows vendors to add special instructions-like text for vendor users to review. Simply type into the text field and click “+” to add a note."; 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 = ''; } }