// Define your coupon codes here
// -----------------------------
//
// Notes:
//	You can define as many codes as you like.
//	Separate the code and the value with a :
//	The discount value can be a fix value or a percentage of the subtotal.
//	Blanks will be ignored.
//	I recommend to use characters and numbers only.
//	The codes are not case sensitive..

discountByCode = new Array()

i = 0
discountByCode[i++] = "abcd:25"		// discount of $25
discountByCode[i++] = "peter:15"	// discount of $15

discountByCode[i++] = "1234:20%"	// discount of 10%
discountByCode[i++] = "5678:20%"	// discount of 10%
discountByCode[i++] = "FREE:100%"	// free!


