function proceedCompare(isChecked, destinationDivId, url, productId) {

	if(isChecked) {
		$("#"+destinationDivId).load(url + "&subCategoryId=10000&productIDs=" + productId + "&rand=" + Math.floor(Math.random()*100000000));
		//alert(url + "&subCategoryId=10000&productIDs=" + productId + "&rand=" + Math.floor(Math.random()*100000000));
	} else {
		$("#"+destinationDivId).load("/tonline/navigation.do?action=DeleteFromComparisonListInList&subCategoryId=10000&productIDs=" + productId + "&rand=" + Math.floor(Math.random()*100000000));
		//alert("/tonline/navigation.do?action=DeleteFromComparisonListInList&subCategoryId=10000&productIDs=" + productId + "&rand=" + Math.floor(Math.random()*100000000));
	}

}