ma = new Array(50)
ma[1] = new Array("25 Tracts","1025","12.50","2.96")
ma[2] = new Array("50 Tracts","1050","25.00","3.95")
ma[3] = new Array("100 Tracts","1100","50.00","4.95")
ma[4] = new Array("250 Tracts","1250","117.50","5.95")
ma[5] = new Array("500 Tracts","1500","225.00","8.95")
ma[6] = new Array("750 Tracts","1750","322.50","8.95")

ma[19] = new Array("Spiritual Warfare, CD","2016","20.00","2.00")
ma[7] = new Array("Battle for the Mind, CD","2000","20.00","2.00")
ma[8] = new Array("Victorious Living, CD","2002","20.00","2.00")
ma[9] = new Array("The Worth of a Woman, CD","2004","20.00","2.00")
ma[10] = new Array("Heart and Home, CD","2006","20.00","2.00")
ma[11] = new Array("Highest Praise, CD","2008","15.00","2.00")
ma[12] = new Array("Highest Praise, cassette","2009","10.00","2.00")
ma[13] = new Array("It's My Desire, CD","2010","15.00","2.00")
ma[14] = new Array("It's My Desire, cassette","2011","10.00","2.00")
ma[15] = new Array("Death of a Salesman, 4 CDs","2012","20.00","2.00")
ma[16] = new Array("Death of a Salesman, 4 cassettes","2013","15.00","2.00")
ma[17] = new Array("Death of a Salesman, 2 CDs","2014","15.00","2.00")
ma[18] = new Array("Death of a Salesman, 2 cassettes","2015","10.00","2.00")

ma[20] = new Array("A Call to Courage - DVD","2020","30.00","2.00")
ma[21] = new Array("Reaching the Fourth World - DVD","2021","30.00","2.00")


function buy(x,y) {

	if (y!=0){
maTgt = "https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=dominic@compelled2go.com" +
	"&item_name=" + ma[x][0] + " - " + y + "&item_number=" + ma[x][1] + "&amount=" + ma[x][2] +
	"&shipping=" + ma[x][3] + "&no_shipping=2&return=http%3a//www.compelled2go.com/Materials/Thanks.htm" +
	"&cancel_return=http&3a//www.compelled2go.com/Materials/Cancel.htm" +
	"&currency_code=USD&lc=US&bn=PP-BuyNowBF&charset=UTF-8"
window.open(maTgt,'purchase','width=800,height=600')
	}
	else{
	maTgt = "https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=dominic@compelled2go.com" +
	"&item_name=" + ma[x][0] + "&item_number=" + ma[x][1] + "&amount=" + ma[x][2] +
	"&shipping=" + ma[x][3] + "&no_shipping=2&return=http%3a//www.compelled2go.com/Materials/Thanks.htm" +
	"&cancel_return=http&3a//www.compelled2go.com/Materials/Cancel.htm" +
	"&currency_code=USD&lc=US&bn=PP-BuyNowBF&charset=UTF-8"
window.open(maTgt,'purchase','width=800,height=600')

	}
}