function sbox_box() {
document.writeln('<!-- search_Box -->');
document.writeln('<form style="margin:0" name="srhform" method="get" onsubmit="setSearchAction(this); return false;" accept-charset="utf-8" >');
document.writeln('<table width="100%" border="0" cellspacing="0" cellpadding="0">');
document.writeln('<tr>');
document.writeln('<td width="630"><table border="0" cellpadding="0" cellspacing="0">');
document.writeln('<tr>');
document.writeln('<td width="10">&nbsp;</td>');
document.writeln('<td>');
document.writeln('<input name="SearchType" type="radio" value="news" checked="true" /><span class="menubar_t_12">新聞 </span>');
document.writeln('<input name="SearchType" type="radio" value="" /><span class="menubar_t_12"> 網頁</span>');
document.writeln('<input name="SearchType" type="radio" value="image" /><span class="menubar_t_12">圖片</span>');
document.writeln('<input name="k" type="text" class="search" size="25" id="k" style="margin: 0px 0pt 0pt 0px;width:180px;"/>');
document.writeln('<input type="image" src="http://n.yam.com/i/header/y_t_b01.gif" width="55" height="21" align="absmiddle" /></td>');
document.writeln('</tr>');
document.writeln('</table>');
document.writeln('</td>');
document.writeln('</tr>');
document.writeln('</table>');
document.writeln('</form>');
document.writeln('<!-- search_Box -->');
document.getElementById("k").focus();
}

function setSearchAction(f) {
	//document.charset='utf-8';
  if(f.SearchType[0].checked) {
		location.href = 'http://search.yam.com/Search/Web/?SearchType=news&k='+encodeURI(document.getElementById("k").value);
		//f.action = "http://search.yam.com/Search/Web/"
		//f.submit();
  } else if(f.SearchType[1].checked) {
		location.href = 'http://search.yam.com/Search/Web/?k='+encodeURI(document.getElementById("k").value);
    	//f.action = "http://search.yam.com/Search/Web/"
		//f.submit();
  }else if(f.SearchType[2].checked) {
		location.href = 'http://search.yam.com/Search/Img/?SearchType=image&k='+encodeURI(document.getElementById("k").value);
    	//f.action = "http://search.yam.com/Search/Img/"
		//f.submit();document.charset='big5';
  } else {
		alert("請選擇您想要查詢的資料！"); f.SearchType[0].focus();
		return;
  }
  
}

