
function validateProduct(product, prodName) {
    var selProducts = document.getElementById("comparableProducts").value;
    if (product.checked) {
        document.getElementById("comparableProducts").value = selProducts + "," + prodName;
    } else {
        selProducts = selProducts.replace(prodName, "");
        document.getElementById("comparableProducts").value = selProducts;
    }
}


