<!--
  function change_page(nextPage){
    var file_path;
    var file_path_after;
    var file_path_change;
    
    if ( nextPage == "1" ) {
      
      file_path_change = "www.welcome2japan.cn";
      
    } else if ( nextPage == "2" ) {
      
      file_path_change = "www.welcome2japan.hk";
      
    } else {
      
      return;
    }
    
    file_path       = window.location.pathname;
    file_path_after = "http://"+ file_path_change + window.location.pathname;
    
    location.href = file_path_after;
    
  }
//-->



