﻿function do_Search1()
{
    var keyWord=document.form2.keyWord.value;
    if(keyWord.length>0)
        //window.open("search/"+encodeURI(keyWord)+"/1.html");
        form2.submit();
    else
        alert('请输入关键字！');
}
