
var checkedI = new Array()
var checkedS = new Array()
var countI = 5
var buyme = false
var buyspec = ''
var buyQuant = '1'
var localSKU = ''

function clearCheckedI(){ for (var i=0; i<countI; i++){checkedI[i]=''} }
function pushCheckedI(n,v){ checkedI[n] = v }
function popCheckedI(n){ checkedI[n] = '' }
function storeCheckedI(){ for (var i=0; i<countI; i++){checkedS[i]=checkedI[i]}; }
function restoreCheckedI(){ for (var i=0; i<countI; i++){checkedI[i]=checkedS[i]} }

function strobeCheckedI(){
	if (!buyme){return false}
	for (var i=0; i<countI; i++){
		if (checkedI[i] != ''){
//			window.top.frames.prox.document.all.ampr.href = 
//				'http://cart.wellsfargoestore.com/addtocart.mart?m=lifetimelearning&upc=' + checkedI[i] + '&qty=1&L=' + window.top.linkID
		window.open("http://lifet.ivdesk.com/Storefront/showproduct.aspx?productid=13&skinid=3", "_blank")
			checkedI[i] = ''
			window.top.getElementById('prox').document.getElementById('ampr').click()
			return false
		}
	}
	if (buyspec != ''){
//		window.top.frames.prox.document.all.ampr.href = 
//			'http://cart.wellsfargoestore.com/addtocart.mart?m=lifetimelearning&upc=' + buyspec + '&qty=' + buyQuant + '&L=' + window.top.linkID
		window.open("http://lifet.ivdesk.com/Storefront/showproduct.aspx?productid=13&skinid=3", "_blank")
		buyspec = ''
		window.top.getElementById('prox').document.getElementById('ampr').click()
		return false
	}
	if (buyme){
//		window.open("http://cart.wellsfargoestore.com/cart.mart?m=lifetimelearning","_blank")
		window.open("http://lifet.ivdesk.com/Storefront/showproduct.aspx?productid=13&skinid=3", "_blank")
		try { document.getElementById('buyb').src='purc/graphics/buy.gif' } catch(e) {}
		buyme = false
	}
}

function fetchSKU(v){
	if (localSKU==''){
//		fetchNCLBTCookie()
		localSKU = cookieS
	}
	return localSKU.split(',')[v]
}

clearCheckedI()

