var fDesc=new Array(); fDesc[0] = "If you are sending a fax automatically and the intended recipient's line is busy, your Brother machine will automatically redial that number one time after five minutes. If the number is still busy when your Brother machine redials it, you must make another attempt to send to it. If you are manually sending a fax and the intended recipient's line is busy, your Brother machine will not automatically redial the number. You must press the REDIAL/PAUSE key, then the BLACK START or COLOR START key to redial the number."; 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 = ''; } }