﻿//  ---------------------------------------------------------------------------
//	update promotions code
//  ---------------------------------------------------------------------------
function updatePromotionCode(url) {             
    var promoCode = $(".txtPromotionCode").val();
    if (promoCode == "" || promoCode == null) {
        alert("You have not entered a promotion code.");
    } else {
        document.location.href = url + "&promocode=" + promoCode;
    }
}

//-----------------------------------------------
 $(document).ready(function(){
 
$("div.show_more").unbind("click");
$("div.show_more").click(function () {
    shower = $(this).parent().find("div.show_show");
    if ($(shower).is(":hidden")) {
        $("#mm_new_basket .show_show").hide();
        $("#mm_new_basket .show_more").html("Show all package details");
        $(shower).show();
        $(this).html("Hide package details")
    } else {
        $(shower).hide();
        $(this).html("Show all package details")
    }
});

//------------------------------------------------
  });


