 
 /* *********************************************************
** Product Database
** ****************************************************** */ 
function listing(product,code,brand,series,colour,price,priceFrom,priceTo) { 

this.product = product;
this.code = code;
this.brand = brand;
this.series = series; 
this.colour = colour;
this.price = price;
this.priceFrom = priceFrom;
this.priceTo = priceTo;
}

cat = new Array(6)
cat[0] = new listing("fountain","4509","cross","century 2","gold","85.00","","")
cat[1] = new listing("ballpoint","902-5","cross","pinnacle","bordeaux","104.00","","")
cat[2] = new listing("fountain","pk17","parker","sonnet","black","50.00","","")
cat[3] = new listing("fountain","n/a","sheaffer","legacy 2","silver","175.99","","")
cat[4] = new listing("ballpoint","792","cross","townsend","blue","173.00","","")
cat[5] = new listing("ballpoint","672","cross","townsend","green","173.00","","")
