var HtmlPrefix = "";
function ReplaceURLParam(){
var urtTarget = "PageRowID=" + id+ "&page=BasicInfo";
var encryData = window.btoa(window.encodeURIComponent(urtTarget));
var newUrl = GetRootPath() + "/HTML/Customer/CustomerBasicManage.html" + "?" + encryData;
window.history.replaceState('', '', newUrl);
}
function GetRootPath() {
var origin = window.document.location.origin;
if (HtmlPrefix != "" && HtmlPrefix != null && HtmlPrefix != undefined) {
origin = "/" + HtmlPrefix;
}
return origin;
}