
function pm_show_buy_points()
{
 $("#buy_points").show();
 $("#buy_points_other").hide();
 $("#gift_points").hide();
}

function pm_show_buy_points_other()
{
 $("#buy_points").hide();
 $("#buy_points_other").show();
 $("#gift_points").hide();
}

function pm_show_gift_points()
{
 $("#buy_points").hide();
 $("#buy_points_other").hide();
 $("#gift_points").show();
}
