// JavaScript Document
function fn_submit()
{
    if(findform.searchText.value == "")
    {
        alert("请输入关键字!");
        return false ;
    }
    else 
        return true;
}