var urlstr = location.href;
var vzq123net = num_to_str("999026272823877893");
var v123zqcom = num_to_str("262728999023768886");
var v123zqnet = num_to_str("262728999023877893");
var v123zqwcom = num_to_str("26272899909623768886");
var newurl = v123zqnet;

if (urlstr.indexOf(v123zqcom)!=-1){
  urlstr = urlstr.replace(v123zqcom, newurl);
  location.replace(urlstr);
}else if (urlstr.indexOf(vzq123net)!=-1){
  urlstr = urlstr.replace(vzq123net, newurl);
  location.replace(urlstr);
}

function num_to_str(num) {
  var str_out = "";
  var num_in;
  for(i = 0; i < num.length; i += 2) {
    num_in = parseInt(num.substr(i,[2])) + 23;
    num_in = unescape('%' + num_in.toString(16));
    str_out += num_in;
  }
  return str_out;
}
