function deleteItem(str) {
	this.document.forms[0].act.value = 2
	this.document.forms[0].band.value = str
	this.document.forms[0].action = "/shopping.asp"
	this.document.forms[0].submit()
}

function updateShop() {
	this.document.forms[0].act.value = 3
	this.document.forms[0].action = "/shopping.asp"
	this.document.forms[0].submit()
}

function continueShop() {
	this.document.forms[0].act.value = 5
	this.document.forms[0].action = "/shopping.asp"
	this.document.forms[0].submit()
}

function checkOut() {
	this.document.forms[0].action = "https://secure.watchbandsonline.com/order.asp"
	this.document.forms[0].submit()
}