﻿


function SoNew(txtName, SiteType) {
    var txtNameKey = document.getElementById(txtName).value;
    if (txtNameKey == "") {
        alert("请输入关键字！");
        document.getElementById(txtName).focus();
        return;
    }
    var sUrl = "http://infor.hr33.com/SearchResult.aspx?txtKeyword=" + escape(txtNameKey) + "&SiteType=" + SiteType;
    //window.open(sUrl);
    window.location = sUrl;
}


function SoNewTxt(TxtKwy, SiteType) {
    
    var sUrl = "http://infor.hr33.com/SearchResult.aspx?txtKeyword=" + escape(TxtKwy) + "&SiteType=" + SiteType;
    window.open(sUrl);
    //window.location = sUrl;
}