function	shopcart_update(shopcart) {
	shopcart.check_list.value	=	getCheckboxValue(shopcart.del_list,',') ;
	xajax_shopcart_update(xajax.getFormValues(shopcart)) ;
}
function	shopcart_save_shopping(shopcart) {
	shopcart.check_list.value	=	getCheckboxValue(shopcart.del_list,',') ;
	xajax_shopcart_save_shopping(xajax.getFormValues(shopcart)) ;
}
function	shopcart_save_shipping(shopcart) {
	if		(shopcart.FIRST_NAME.value	==	'')	{	alert('請輸入買受人的姓名!') ; shopcart.FIRST_NAME.focus() ; }
	else if	(shopcart.TEL.value	==	'')			{	alert('請輸入您的聯絡電話!') ; shopcart.TEL.focus() ; }
	else if	(shopcart.ADDRESS_1.value	==	'')	{	alert('請輸入您的送貨地址!') ; shopcart.ADDRESS_1.focus() ; }
	else if	(shopcart.ZIP.value	==	'')			{	alert('請輸入郵遞區號!') ; shopcart.ZIP.focus() ; }
	else	{
		xajax_shopcart_save_shipping(xajax.getFormValues(shopcart)) ;
	}
}

