var fDesc=new Array(); fDesc[0] = "This neat application allows you to factor in the costs of charges like customs duty, freight, stevedore, storage, cartage etc and pro-rates it across the items by weight, quantity, value or volume. Work out the true landed cost of your product to avoid selling it at incorrect pricing. In addition you can store logistical information such as dates, voyage no's 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 = ''; } }