// JavaScript Document
document.write('<div class="right" style="padding-top:10px; padding-right:30px;"><img src="/images/search.jpg" width="47" height="19"  style="cursor:pointer" onclick="newsSearch()" /></div>');
document.write('<div class="right" style="padding-top:9px; padding-right:10px;"><input name="keyword" maxlength="10" id="keyword" style="height:17px; border:1px solid #cccccc" size="15"/></div>');
document.write('<div class="right" style="padding-top:12px; padding-right:10px;">信息搜索：</div>');
document.write('<div class="clear"></div>');

function newsSearch()
{
	var k=document.getElementById("keyword").value;
	window.location="/search.aspx?k="+k;
}
