﻿$(function() {
    $("#aPopup").click(function() {
        $("body").append("<iframe id='TB_HideSelect'></iframe>");
        $('#TB_HideSelect').hide();
        $('#TB_HideSelect').show();
        $('.earning_wrap').show();
        return false;
    });
    $("#aClose").click(function() {
        $("#TB_HideSelect").remove();
        return false;
    });

    if ($("#earning").size() == 0) {        
        $("#aPopup").hide();
    }
});
