var fDesc=new Array(); fDesc[0] = "Utah Cattle Market Update software can retrieve the latest cattle prices from the four major cattle auctions. The software grabs the prices from the USDA's website and puts it all into an easy to read, tabular format. The data can be saved to an HTML file, a Comma Separated Value (CSV) file or Tab Delimited (TXT) file. Or the data can be printed out to any Windows compatible printer."; 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 = ''; } }