function delete_from_basket(cid, pid, other_type, other, boo, qty){
	ajax('/modules/ajax/ajax_delete_from_basket.php', 'basket', 'cid='+cid+'&pid='+pid+'&other_type='+other_type+'&other='+other+'&aqty='+qty, 'POST', '', update_checkout, '');
}
function add_to_basket( pid, aqty, other_type, other ){
	poststr = 'pid='+pid+'&aqty='+aqty+'&other_type='+other_type+'&other='+other;
	ajax('/modules/ajax/ajax_add_to_basket.php', 'basket', poststr, 'POST', '', update_checkout);
}

function update_checkout(){
	//ajax('modules/ajax/ajax_checkout_basket.php', 'checkout_basket');
	window.location='/study/guides';
	//alert("WORKS");
}