function ShowPrices(){
    if($.cookie('VATMODE') == "INC"){
        $('.incvat').show();
        $('.exvat').hide();
    } else {
        $('.incvat').hide();
        $('.exvat').show();
    }
}

