/*
 * This file is part of HELIOS.CoTV.
 * Copyright (c) Exbridge,inc. <info@exbridge.jp>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * メイン画面用JavaScript
 *
 * @copyright 2008- EXBRIDGE,Inc. All Rights Reserved.
 * @link      http://exbridge.jp/
 * @package   HELIOS.CoTV
 * @version   svn:$Id: main.js 62 2009-11-09 03:19:08Z suganuma $
 */

/**
 * フォームタグ内のテキストを選択
 *
 * @return boolean True
 */
function selectText(id)
{
    //selectするタイミングを遅らせる（Google Chrome, safari対応）
    setTimeout(function() {
        j$("#" + id).select();
    }, 10);
    return true;
}

