﻿function toggleDescription(showDescription) {
    if (showDescription == 'yes') {
        $('#productDescription').show();
        $('#packageContents').hide();
    }
    else {
        $('#productDescription').hide();
        $('#packageContents').show();
    }    
}

function toggleShipCost(showCourier) {
    if (showCourier == 'yes')
    {
        $('#courierDiv').show();
        $('#regpostDiv').hide();
    }
    else
    {
        $('#courierDiv').hide();
        $('#regpostDiv').show();
    }
}
