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

function qbcheckform(theForm){
if(theForm.word.value==""){
        window.alert("关键字不能为空");
        theForm.word.focus();
    }
else if (theForm.word.value == "请输入关键字") 
{ 
alert("请输入内容！"); 
theForm.word.focus(); 
} 
    else{
        theForm.xz.value=0;
        theForm.d.value='';
        theForm.submit(); 
    }
}

function qbokcheckform(theForm){
if(theForm.word.value==""){
        window.alert("关键字不能为空");
        theForm.word.focus();
    }
else if (theForm.word.value == "请输入关键字") 
{ 
alert("请输入内容！"); 
theForm.word.focus(); 
} 
    else{
        return true;
    }
}

function ok_submit(theForm)
{
    
    theForm.xz.value=1;
    theForm.d.value='desk';
    theForm.action="http://union.zhongsou.com/uncoll.cgi";

    if(qbokcheckform(theForm)) theForm.submit();
}