//
//      -- (C) Andrew Scott, 2006
//      http://www.andrew-scott.co.uk/
//
troy = 1/64.79891;
impl = 1/64.79891;

rows = new Array( "Troy1", "Troy2", "*", "UK_US_Imperial1", "UK_US_Imperial2",
   "*", "UK_Imperial1", "UK_Imperial2",
   "*", "US_Imperial",
   "*", "Metric1", "Metric2", "Metric3" );

Troy1 = new Array( "grain", troy, "penny (dwt)", troy/24, "ounce", troy/480 );
Troy2 = new Array( "pound", troy/5760 );

UK_US_Imperial1 = new Array( "grain",impl, "drams",impl/27.344,
   "ounces", impl/437.5 );
UK_US_Imperial2 = new Array( "pounds", impl/7000 );

UK_Imperial1 = new Array( "stone", impl/98000, "quarters", impl/196000,
   "short cwt", impl/700000 );
UK_Imperial2 = new Array( "hundredweight (cwt)", impl/784000,
   "short ton", impl/14000000, "long ton", impl/15680000);

US_Imperial = new Array("hundredweight (cwt)", impl/700000,
   "short ton", impl/14000000 );

Metric1 = new Array( "milligram", 1, "centigram", 1/10, "decigram", 1/100);
Metric2 = new Array( "carat", 1/200, "gram",1/1000, "decagram",1/10000 );
Metric3 = new Array( "kilogram", 1/1000000, "tonne", 1/1000000000,
   "hectogram",1/100000);
