echo __('Close');
        ?>
</a>
                </div>
            </div>
        </div>
    <?php 
    } else {
        ?>

        <div class="box timesheet noHeader" id="timesheet">

            <div class="inner">

                <?php 
        echo isset($successMessage[0]) ? displayMainMessage($successMessage[0], $successMessage[1]) : '';
        ?>

                <div class="top">
                    <h3>
                        <?php 
        echo isset($employeeName) ? __('Timesheet for') . " " . $employeeName . " " . __('for') . " " . __($headingText) . " " : __('Timesheet for') . " " . __($headingText) . " ";
        ?>
                    </h3>
                    <form>
                        <ol class="normal" style="padding-bottom:0">
                            <li style="margin-bottom:5px">
                                <?php 
        echo $dateForm['startDates']->render(array('onchange' => 'clicked(event)'));
        ?>
                                <?php 
}
if ($noOfColumns == 30 || $noOfColumns == 31) {
    if (isset($employeeName)) {
        echo __('Edit Timesheet for') . " " . $employeeName . " " . __('for Month starting on') . " " . set_datepicker_date_format($currentWeekDates[0]);
    } else {
        echo __('Edit Timesheet for Month') . " ";
        set_datepicker_date_format($currentWeekDates[0]);
    }
}
?>
            </h3>
        </div>
        
        <div id="validationMsg">
            <?php 
echo isset($messageData[0]) ? displayMainMessage($messageData[0], $messageData[1]) : '';
?>
        </div>
        
        <form class="timesheetForm" method="post" id="timesheetForm" >
            <div class="tableWrapper" style="overflow:auto">
            <table style="width:100%" class="table">
                <thead>
                    <tr>
                        <th style="width:2%" class="center"><input type="checkbox" style="display:none"></th>
                        <th style="width:24%" id="projectName"><?php 
echo __('Project Name');
?>
</th>
                        <th style="width:18%" id="activityName"><?php 
echo __('Activity Name');