function itin_add(id, cb, itype) {
	var _id = id;
	var _cb = cb;
	var a = new Ajax.Request(fuse_root + '/itinerary/ajax_add.cfm?recID=' + id + '&itype=' + itype, {
		'onSuccess': function(response) {
			if (response.responseText != '0') eval(_cb + '(id, response.responseText);');
			return true;
		},
		'onFailure': function(response) {
			document.body.innerHTML = response.responseText;
			return false;
		}
	});
	return false;
}
	
function cbListing(id, num) {
	var ispan = $('itin_' + id);
	if(ispan != null)
		ispan.innerHTML = '<b class="itin_added">Added to Itinerary</b>';
	//$('itin_cnt').innerHTML = '&nbsp;(' + num + ')';

	/*Google Maps Code*/
	if(placemarks && updatePlacemarkItinerary){
		updatePlacemarkItinerary(id);
	}
	/*End Google Maps Code*/
}