// JavaScript Document

function updateCart( uid, qty ) {
	
	document.location.href = '/cart/update.asp?uid=' + uid + '&qty=' + qty	;
	
}
