﻿ function setLoginOk() { if (parent) { parent.window.location.reload(); } }

      function loginCheck() {
//          if (document.getElementById("loginname").value.trim() == "") {alert("请填写用户名!"); $("loginname").focus(); return false; }
            if (document.getElementById("loginname").value.trim() == "") {$("a").style.display="block"; $("showtxt").innerHTML="请填写用户名!"; $("loginname").focus(); return false; }

          if (document.getElementById("password").value.trim() == "") {$("a").style.display="block"; $("showtxt").innerHTML="请填写密码!"; $("password").focus(); return false; }
            return true;
        }

        function serchCheck() {
            if (document.getElementById("serch").value.trim() == "" || document.getElementById("serch").value.trim() == "产品类别或名称")
             {
             $("a").style.display="block"; $("showtxt").innerHTML="请输入产品类别或名称!";
              $("serch").focus(); document.getElementById("serch").value = ""; return false; }
//                            alert("请输入产品类别或名称!"); $("serch").focus(); document.getElementById("serch").value = ""; return false; }

            return true;
        }
        function clearinp() {
            if (document.getElementById("serch").value.trim() == "产品类别或名称") { $("serch").focus(); document.getElementById("serch").value = ""; return false; }
            return true;
        }
 
