/*
 * This file is part of HELIOS.CoTV.
 * (c) 2007-2008 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 1 2009-02-11 23:55:39Z suganuma $
 */
/**
 * フォームタグ内のテキストを選択
 */
function selectText(id) {
  var obj;
  obj = document.getElementById(id);
  obj.focus();
  obj.select();
}
