function addToCart(buttonId) {
	var doc = document.forms['shop'];
	
	doc.cmd.value = '_s-xclick';
	doc.hosted_button_id.value = buttonId;
	
	doc.submit();
}

function viewCart() {
	var doc = document.forms['view'];
	doc.submit();
}
