// JavaScript Document
//用户查询
function doSearch(){
		var string=document.getElementById("keywords").value;
		var url="http://www.t55.net/wiki/index.php?title=Special:Search&search="+string+"&go=Go";
		document.form1.action=url;
		form1.submit();
		return;
		
		//window.location.href="http://http://www.t55.net/wiki/index.php?title=Special:Search&search="+string+"&go=Go";
	}
	
//新建词条
function doCreate(){
		var string=document.getElementById("keywords").value;
		//var url="http://www.t55.net/wiki/index.php?title="+string+"&action=edit&redlink=1";
		var url="http://www.t55.net/forum/viewforum.php?f=2&sid=727cbc6bc07976856c87dc74cbb415c9";
		document.form1.action=url;
		form1.submit();
		return;
		//window.location.href="http://www.t55.net/wiki/index.php?title="+string+"&action=edit&redlink=1";
	}

function doPress(){
	if(event.keyCode==32){
		event.retuenValue=false;
		document.getElementById("keywords").value+="_";
	}
}
