var fDesc=new Array();
fDesc[0] = "- ShippingNet is used to create full set export shipping document for exporter
- it generates full set document including invoice , customs invoice, shipping order
- and packing list, container tally sheet, form A application, Certificate of Origin, Country declaration
- and Azo fee Certificate, Nickel Free Certificate, Denim Wash Certificate, Quota Charge Statement
- and Beneficiary, Compliance statement, Homeland security declaration, Code Of Conducts declaration
- and Non wooden material statement, Security Affidavit, No-Transshipment Statement, NAFTA C/O
- and canadian Customs Invoice, Canadian C/O, Apparel and Textile C/O and shipment advise";
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 = '';
}
}