
 function path()
  {
    var oWord=document.getElementById("SearchInput");
    var strSearch = location.href.toString();
    if(oWord != null)
    {
       oWord.value = oWord.value.replace(/^\s*|\s*$/g,"");
       var oWord1=oWord.value.replace("#","%23");
       if(oWord1 == "")
    {
       alert('请输入游戏关键字');
       return;
    }
       if(strSearch.toLowerCase().indexOf("search.aspx") == -1)
       {
          window.open("/search.aspx?kw="+escape(oWord1));
       }
       else
       {
          location.href="/search.aspx?kw="+escape(oWord1);  
       }
    }
    return false;
  } 
  
  	    //评语
	    function comentyu(msg)
	    {
	       if(msg==1)
	       {
	         document.getElementById('CommentTextInput').innerText = "很好,确实不错";
	       }
	       else if(msg ==2)
	       {
	           document.getElementById('CommentTextInput').innerText = "有潜力,继续加油";
	       }
	       else if(msg==3)
	       {
	            document.getElementById('CommentTextInput').innerText = "很一般了";
	       }
	    }     