function copyComparisonDetails(productSelected, destinationDivNumber) {
    $('#div_product_comparison' + destinationDivNumber).html($('#' + productSelected + '_detail').html());
}

function clearComparisonDetails(destinationDivNumber) {
    $('#div_product_comparison' + destinationDivNumber).html('&#160;');
}

function showDiv3() {
    $('#div_product3').show();
    $('#product3').removeAttr('disabled');
    $('#show_another_product').hide();
    $('#hide_this_product').show();
}

function hideDiv3() {
    $('#div_product3').hide();
    $('#show_another_product').show();
    $('#hide_this_product').hide();
    $('#product3').attr('disabled', 'disabled');
}

