var products = []
var productlist = []

function __p__ (id,n,s,m,p) {
	this.id = id
	this.name = n
	this.size = s
	this.met = m
	this.price = p
}
	
function inputData (id,n,s,m,p) {	
	products[id] =  new __p__ (id,n,s,m,p)	
	productlist[productlist.length] = id	
}
	
/*****************************************
LAUNDRY
*****************************************/
	
inputData(
	"L011"
	,"Laundry Powder"
	,"5lb"
	,"2.25kg"	
	,"2200"
	
	)

inputData(
	"L021"
	,"Free & Clear Laundry Powder"
	,"10lb"
	,"4.5kg"
	,"5120"
	
	)
	
inputData(
	"L031"
	,"Premium Plus Laundry Powder"
	,"5lb"
	,"2.25kg"
	,"2700"
	
	)
	
inputData(
	"L041"
	,"Laundry Liquid"
	,"32oz"
	,"960ml"
	,"1880"
	
	)
	
inputData(
	"L042"
	,"Laundry Liquid"
	,"64oz"
	,"1.9liter"
	,"2500"
	
	)
	
inputData(
	"L051"
	,"Free & Clear Laundry Liquid"
	,"64oz"
	,"1.9liter"
	,"2500"
	
	)

inputData(
	"L061"
	,"Cold-Water Formula Laundry Liquid"
	,"64oz"
	,"1.9liter"
	,"2500"
	
	)

inputData(
	"L071"
	,"Oxygen Bleach Plus"
	,"2lb"
	,"900g"
	,"1200"
	
	)

/*****************************************
KITCHEN
*****************************************/
	
inputData(
	"K011"
	,"Hand Moisturizing Dishwash Liquid"
	,"32oz"
	,"960ml"
	,"1500"
	
	)

inputData(
	"K021"
	,"Free & Clear Dishwash Liquid"
	,"32oz"
	,"960ml"
	,"1500"
	
	)

inputData(
	"K031"
	,"Lemon Thyme Dishwash Liquid"
	,"32oz"
	,"960ml"
	,"1500"
	
	)
	
inputData(
	"K041"
	,"Concentrated Produce Wash"
	,"16oz"
	,"480ml"
	,"1370"
	
	)

//missing
inputData(
	"K051"
	,"Automatic Dish Powder"
	,"32oz"
	,"960g"
	,"2550"
	
	)

inputData(
	"K061"
	,"Free & Clear Automatic Dish Powder"
	,"32oz"
	,"960g"
	,"2550"
	
	)
	
inputData(
	"K071"
	,"Automatic Dish Gel"
	,"64oz"
	,"1.9liter"
	,"2800"
	
	)

/*****************************************
CLEANER
*****************************************/

inputData(
	"G011"
	,"Super Concentrated All Purpose Cleaner"
	,"16oz"
	,"480ml"
	,"1380"
	
	)

inputData(
	"G012"
	,"Super Concentrated All Purpose Cleaner"
	,"32oz"
	,"960ml"
	,"1880"
	
	)
	
//inputData(
//	"G014"
//	,"All Purpose Cleaner"
//	,"1 gallon"
//	,"3.8liter"
//	,"5500"
//	
//	)
//
//inputData(
//	"G015"
//	,"All Purpose Cleaner"
//	,"5 gallon"
//	,"19liter"
//	,"2550"
//	
//	)

inputData(
	"G021"
	,"Spray & Wipe All Purpose Cleaner"
	,"32oz"
	,"960ml"
	,"1350"
	
	)
	
inputData(
	"G031"
	,"BAC-OUT Stain & Odor Eliminator"
	,"16oz"
	,"480ml"
	,"1750"
	
	)

inputData(
	"G032"
	,"BAC-OUT Stain & Odor Eliminator"
	,"32oz"
	,"960ml"
	,"2350"
	
	)

inputData(
	"G041"
	,"Ammonia Free Glass Cleaner"
	,"16oz"
	,"480ml"
	,"1300"
	
	)

inputData(
	"G042"
	,"Ammonia Free Glass Cleaner"
	,"32oz"
	,"960ml"
	,"1680"
	
	)


/*****************************************
SOYBLENDS
*****************************************/

inputData(
	"S011"
	,"Soy Cream Cleaner"
	,"32oz"
	,"960ml"
	,"1580"
	
	)

inputData(
	"S021"
	,"Citrus Soy Solvent"
	,"32oz"
	,"960ml"
	,"3200"
	
	)

inputData(
	"S031"
	,"Soy Toilet Scrub"
	,"32oz"
	,"960ml"
	,"1580"
	
	)

inputData(
	"S041"
	,"Soy Lube SL-100"
	,"4oz"
	,"120ml"
	,"920"
	
	)


