function shRates(){
var r_table='
'+
'| 重量 | 合購運費 |
'
for(w=0;w< 30 ;w++){
cl=(w%2)? 'odd':'even';
_wVal=shippingRates[w+1].split('_');
_wFee=_wVal[1];
_tFee=(w==0)?500:500+(400*w);
_tFee=(_tFee>_wFee)?_wFee:_tFee;
r_table+='| '+
(w+1)+' 磅 | '+
'新台幣 '+currency(_tFee)+' 元 | '+
'
';
}
r_table+='
'
dw(r_table)
}