?>
        </select>
        <input type='submit' class="hw-button" onclick="" value='<?php 
_e('Reset', 'hwdoku');
?>
'/>
        <a class='hw-button' href='javascript:void(0)' onclick="hw_game.suggest_item()"><?php 
_e('>> Suggest Me', 'hwdoku');
?>
</a>
    </form>
        </div>

<?php 
$game = new HQ_Sudoku($size);
$game->init();
$game_grid = serialize($game->show_game(true, 'grid'));
?>

<textarea id='matrix_string' style='visibility:hidden;'><?php 
echo $game_grid;
?>
</textarea>

<script>
    <?php 
if (isset($game)) {
    ?>
    var hw_game = new HW_Sudoku({
        'enabled_valid' : <?php 
    echo (int) $auto_check;