/**
 * 共通javascript処理
 *
 * @copyright Copyright (C) Sight,Inc. All Rights Reserved
 * @author Atsushi Onoda <onoda@sight-inc.co.jp>
 * @since 2008-12-06
 */

/* TOPページ検索処理 */
function Top_Search(){
	
	document.form01.action="index.php";
	document.form01.method="get";
    document.form01.target="_self";
    document.form01.submit();	
}

// 別ウィンドウ表示
function openBrWindow(theURL,winName,features) {
  var win=window.open(theURL,winName,features);
  win.focus();
}