function addToFavorites(theType, theID) {
	var blah = new Image()
	blah.src = '/scripts/addFavorite.cfm?favRefTable=' + theType + '&favRefID=' + theID;
	// alert('The ' + theType + ' has been added to your favorites.');
	return true;
}
function removeFromFavorites(theType, theID) {
	var blah = new Image()
	blah.src = '/scripts/removeFavorite.cfm?favRefTable=' + theType + '&favRefID=' + theID;
	// alert('The ' + theType + ' has been removed from your favorites.');
	return true;
}
