// 搜索代码开始（细览） -->
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://service2.xinhuanet.com/cgi-bin/searchp.cgi?word=" + searchstr;
              return false;
	}
      	else if (act=="site")
	{
	  location.href="http://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://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>");
// 结束显示 -->