        <!--					// ちらし有効期間の１日目まではnew！を、以降最終日まではUP中！を表示する

    IconNEW = 'image/new.gif'
    IconUP = 'image/up.gif'
    IconSPACE = 'image/space.gif'
    IconPR = 'image/PR.gif'
    IconCOUPON = 'image/coupon.gif'
    
    if((TodayDate > A_StartDate) && (TodayDate < A_ChangeDate))
        document.write('<img alt="new" src=' + IconNEW + ' border="0">');
    else if((TodayDate > B_StartDate) && (TodayDate < B_ChangeDate))
        document.write('<img alt="new" src=' + IconNEW + ' border="0">');
    else if((TodayDate > C_StartDate) && (TodayDate < C_ChangeDate))
        document.write('<img alt="new" src=' + IconNEW + ' border="0">');
    else if((TodayDate > D_StartDate) && (TodayDate < D_ChangeDate))
        document.write('<img alt="new" src=' + IconNEW + ' border="0">');
    else if((TodayDate > E_StartDate) && (TodayDate < E_ChangeDate))
        document.write('<img alt="new" src=' + IconNEW + ' border="0">');
    else if((TodayDate > F_StartDate) && (TodayDate < F_ChangeDate))
        document.write('<img alt="new" src=' + IconNEW + ' border="0">');
    else if((TodayDate > Solo_A_StartDate) && (TodayDate < Solo_A_ChangeDate))
        document.write('<img alt="new" src=' + IconNEW + ' border="0">');
    else if((TodayDate > Solo_B_StartDate) && (TodayDate < Solo_B_ChangeDate))
        document.write('<img alt="new" src=' + IconNEW + ' border="0">');
    else if((TodayDate > Solo_C_StartDate) && (TodayDate < Solo_C_ChangeDate))
        document.write('<img alt="new" src=' + IconNEW + ' border="0">');
    else if((TodayDate > A_ChangeDate) && (TodayDate < A_EndDate))
        document.write('<img alt="up" src=' + IconUP + ' border="0">');
    else if((TodayDate > B_ChangeDate) && (TodayDate < B_EndDate))
        document.write('<img alt="up" src=' + IconUP + ' border="0">');
    else if((TodayDate > C_ChangeDate) && (TodayDate < C_EndDate))
        document.write('<img alt="up" src=' + IconUP + ' border="0">');
    else if((TodayDate > D_ChangeDate) && (TodayDate < D_EndDate))
        document.write('<img alt="up" src=' + IconUP + ' border="0">');
    else if((TodayDate > E_ChangeDate) && (TodayDate < E_EndDate))
        document.write('<img alt="up" src=' + IconUP + ' border="0">');
    else if((TodayDate > F_ChangeDate) && (TodayDate < F_EndDate))
        document.write('<img alt="up" src=' + IconUP + ' border="0">');
    else if((TodayDate > Solo_A_ChangeDate) && (TodayDate < Solo_A_EndDate))
        document.write('<img alt="up" src=' + IconUP + ' border="0">');
    else if((TodayDate > Solo_B_ChangeDate) && (TodayDate < Solo_B_EndDate))
        document.write('<img alt="up" src=' + IconUP + ' border="0">');
    else if((TodayDate > Solo_C_ChangeDate) && (TodayDate < Solo_C_EndDate))
        document.write('<img alt="up" src=' + IconUP + ' border="0">');
    else if((TodayDate > CP_A_StartDate) && (TodayDate < CP_A_EndDate))//リストへのクーポンアイコン表示用
        document.write('<img alt="coupon" src=' + IconCOUPON + ' border="0">');
    else if((TodayDate > CP_B_StartDate) && (TodayDate < CP_B_EndDate))//リストへのクーポンアイコン表示用
        document.write('<img alt="coupon" src=' + IconCOUPON + ' border="0">');
    else if((TodayDate > PR_A_StartDate) && (TodayDate < PR_A_EndDate))
        document.write('<img alt ="PR" src=' + IconPR + ' border="0">');
    else if((TodayDate > PR_B_StartDate) && (TodayDate < PR_B_EndDate))
        document.write('<img alt ="PR" src=' + IconPR + ' border="0">');
    else
        document.write('<img src=' + IconSPACE + ' border="0">');
    //-->

