function check(){
    strtxt=document.getElementsByName("gx_amount");
    for (i=0;i<strtxt.length;i++){
        if (strtxt[i].value=="" || strtxt[i].value==null){
            alert("gx_amount为空");
            strtxt[i].focus();
            return false;
        }
    }
    return true;
}