// 搜索代碼開始（細覽） -->
function selectionMade()
{
        if (document.search.searchword.value=="")
	{
		alert("請輸入檢索詞！");
		return false;		
	}

	act=document.search.select.value;
	searchstr = document.search.searchword.value;
	
	if (act=="web")
	{
	location.href="http://big5.xinhuanet.com/gate/big5/service2.xinhuanet.com/cgi-bin/searchp.cgi?word=" + searchstr;
              return false;
	}
      	else if (act=="site")
	{
	  location.href="http://big5.xinhuanet.com/gate/big5/service2.xinhuanet.com/cgi-bin/searchw.cgi?_searchkey="+searchstr;
	  return false;
	}
	else if(act == "news")
	{
	   document.search.word.value=document.search.searchword.value+" site:xinhuanet.com";
	}
        return true;
}


// 開始顯示-->
document.writeln("<table width=\"360\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.writeln("                <form name=\"search\" method=\"post\" action=\"http://big5.xinhuanet.com/gate/big5/service2.xinhuanet.com/cgi-bin/search.cgi\" onsubmit=\"selectionMade()\" target=\"_blank\">");
document.writeln("                  <tr> ");
document.writeln("                    <td width=\"39\" class=\"txt12\">搜索：</td>");
document.writeln("                    <td width=\"166\" class=\"txt12\"> ");
document.writeln("                      <input type=\"hidden\" name=\"bs\" value=\"<!--處理後的關鍵字-->\">");
document.writeln("                      <input type=\"hidden\" name=\"ct\" value=\"<!--代碼類型-->\">");
document.writeln("                      <input type=\"hidden\" name=\"lm\" value=\"<!--網頁更新時間-->\">");
document.writeln("                      <input type=\"hidden\" name=\"cl\" value=\"3\">");
document.writeln("                      <input type=\"hidden\" name=\"tn\" value=\"<!--模板名稱-->\">");
document.writeln("                      <input name=\"word\" size=\"25\" value=\"\" style=\"WIDTH: 150px; HEIGHT: 18px\">");
document.writeln("                    </td>");
document.writeln("                    <td width=\"74\" class=\"txt12\"> ");
document.writeln("                      <select name=\"select\" style=\"WIDTH: 70px; HEIGHT: 18px\">");
document.writeln("                        <option value=web>外網</option>");
document.writeln("                        <option value=own>網站</option>");
document.writeln("                        <option value=site>本網</option>");
document.writeln("                      </select>");
document.writeln("                    </td>");
document.writeln("                    <td width=\"81\" class=\"txt12\"> ");
document.writeln("                      <input type=\"submit\" name=\"Submit\" value=\"搜索\" style=\"HEIGHT: 18px; font-size:9pt\">");
document.writeln("                      <input type=\"hidden\" name=\"sr\" value=\"0\">");
document.writeln("                    </td>");
document.writeln("                  </tr>");
document.writeln("                </form>");
document.writeln("              </table>");
// 結束顯示 -->