var requestURL = "";
function changeAddLink(o){
	var entryId = o.request.options.argument.entryid;
	$('compareLink' + entryId).ancestors()[0].hide();
	$('compareListLink').show();
	/*
	var compareLink = $('compareLink' + entryId);
	compareLink.innerHTML = "View Comparison List";
	compareLink.href = requestURL + "/property-comparison.cfm";
	*/
}
afterAjaxSuccess = changeAddLink;
function addToCompare(entryId){
	generalAjaxCall(requestURL + "/_ajax_addCompare.cfm?entryid=" + entryId,{entryid: entryId});
}

