﻿// JScript 文件

function Onsearch()
 {
 
	var str=window.document.getElementById("query").value.replace(/(\s*$)/g, "").replace(/(^\s*)/g, "");
	var s="/search.aspx?keywords="+str+"&&page=1";	
	if(str.length==0)
	{
	  
	  window.alert("请输入要查询的词！");
	}
	else
	{
	   window.open(s);
	   windows.close();
	
	}

 }
 function OnsearchNoClose()
 {
 
	var str=window.document.getElementById("query").value.replace(/(\s*$)/g, "").replace(/(^\s*)/g, "");
	var s="/search.aspx?keywords="+str+"&&page=1";	
	if(str.length==0)
	{
	  
	  window.alert("请输入要查询的词！");
	}
	else
	{
	   window.open(s);
	
	}

 }
function SubmitKeyClick()
{ 
    if((event.ctrlKey&&window.event.keyCode==13)||window.event.keyCode==13)
    {
       document.getElementById("submit").click();
       return false;
    }
    else
    {
       return true;
    }
    
}