function fncFlashBasket() {
	if(fncGetObj("layBasket")) {
		var intrvl = 1000
		for (i = 0; i < 4; i++) {
			intrvl += 100;
			setTimeout("fncGetObj('layBasket').style.backgroundColor='#FFCC00';", intrvl)
			intrvl += 200;
			setTimeout("fncGetObj('layBasket').style.backgroundColor='#FFFFFF';", intrvl)
			if(i==1) intrvl += 1000;
		}
	}
		
}

function fncProductImage(strPath,strTitle) {
	fncOpenWindow("image.asp?p="+strPath+"&t="+strTitle,"winProductImage","no",500,500)
}

function fncProductTip(strID) {
	fncOpenWindow("tip.asp?id="+strID,"winProductTip","no",290,500)
}

function fncPayment() {
	fncOpenWindow("","winPayment","yes,scrollbars",600,500)
}