var fDesc=new Array(); fDesc[0] = "The 1966 Mustang Part & Body Illustrations manual is a comprehensive collection of detailed part and body illustrations that are extremely useful for any restoration project. For example, part illustrations are “exploded” to show not only the parts of a component, but can be used to identify the basic part number of virtually every nut, washer, etc. The exploded body illustrations show the locations of trim pieces, mouldings, weatherstriping, how sheet metal was assembled, etc."; 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 = ''; } }