var CXML15SKU="CXML15";

function ShopItem(anItem,aPrice,anSku,aQty)
{
this.item=anItem;
this.price=aPrice;
this.sku=anSku;
this.qty=aQty;
}

var cXmlPriceList=new Array();
cXmlPriceList.push(new ShopItem("1 copy","US $595.00",CXML15SKU+"1",1));
cXmlPriceList.push(new ShopItem("5 copies","US $2500.00",CXML15SKU+"5",5));
cXmlPriceList.push(new ShopItem("10 copies","US $4800.00",CXML15SKU+"10",10));
cXmlPriceList.push(new ShopItem("20 copies","US $9200.00",CXML15SKU+"20",20));
cXmlPriceList.push(new ShopItem("50 copies","US $27000.00",CXML15SKU+"50",50));

var cXmlSiteLic=new Array();
cXmlSiteLic.push(new ShopItem("Site License","US $4800.00",CXML15SKU+"SL",1));

function generateCXPriceList()
{
 generatePriceList(cXmlPriceList);
}

function generateSLPriceList()
{
 generatePriceList(cXmlSiteLic);
}

function generatePriceList(aListArray)
{
document.writeln("<table class=priceTable>");
for(anIdx=0;anIdx<aListArray.length;anIdx++)
 {
  var aPriceItem=aListArray[anIdx];
  document.writeln("<tr>");
  document.writeln("<td>"+aPriceItem.item+"</td><td>"+aPriceItem.price+"</td><td>");buyLink2("cx_buy.asp?qty="+aPriceItem.qty,aPriceItem.sku);document.write("</td>");
  document.writeln("</tr>");
 }

document.writeln("</table>");
}