﻿M_sortid = new Array;
I=0;
M_sortid[I] = new Array("Agriculture & Food","030000");
I++;
M_sortid[I] = new Array("Apparel & Accessories","040000");
I++;
M_sortid[I] = new Array("Automobile","050000");
I++;
M_sortid[I] = new Array("Ceramic","200000");
I++;
M_sortid[I] = new Array("Chemical Products","060000");
I++;
M_sortid[I] = new Array("Commodities","070000");
I++;
M_sortid[I] = new Array("Computer Hardware & Software","150000");
I++;
M_sortid[I] = new Array("Construction Materials","090000");
I++;
M_sortid[I] = new Array("Crafts & Presents","020000");
I++;
M_sortid[I] = new Array("Electronic & Electrical","010000");
I++;
M_sortid[I] = new Array("Energy & Mineral","100000");
I++;
M_sortid[I] = new Array("Environment General","110000");
I++;
M_sortid[I] = new Array("Furniture","120000");
I++;
M_sortid[I] = new Array("Health & Beauty","130000");
I++;
M_sortid[I] = new Array("Home Supplies","140000");
I++;
M_sortid[I] = new Array("Jewelry & Watches","160000");
I++;
M_sortid[I] = new Array("Leather & Fur","170000");
I++;
M_sortid[I] = new Array("Packing Materials & Products","180000");
I++;
M_sortid[I] = new Array("Papermaking","190000");
I++;
M_sortid[I] = new Array("Security & Protection","210000");
I++;
M_sortid[I] = new Array("Sports & Tourism","220000");
I++;
M_sortid[I] = new Array("Stationery","230000");
I++;
M_sortid[I] = new Array("Telecommunication","080000");
I++;
M_sortid[I] = new Array("Textile Products","240000");
I++;
M_sortid[I] = new Array("Tools & Hardware","250000");
I++;
M_sortid[I] = new Array("Toys","260000");
I++;
function M_selBox(P_val){
var S_select='';
for(j=0;j<M_sortid.length;j++)
{
if (P_val == M_sortid[j][1]) { S_select = 'selected'; }
document.writeln('<option value='+M_sortid[j][1]+' '+S_select+'>'+M_sortid[j][0]+'</option>');S_select='';
}
}
//M_selBox();
