forked from katryo/bing_search_naive_bayes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path書類_43.html
More file actions
1032 lines (852 loc) · 52.7 KB
/
書類_43.html
File metadata and controls
1032 lines (852 loc) · 52.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="ja" xmlns:hx="http://purl.org/NET/hinclude">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="keywords" content="書類送付のご案内,案内状,無料テンプレート,雛形,文例,フォーマット,サンプル,ダウンロード,書式の王様">
<meta name="description" content="書類送付のご案内とは、書類を送付したことを伝えるための書類">
<title>書類送付のご案内|テンプレートの無料ダウンロードは【書式の王様】</title>
<meta property="og:type" content="website" />
<meta property="og:title" content="書類送付のご案内|テンプレートの無料ダウンロードは【書式の王様】" />
<meta property="og:description" content="書類送付のご案内とは、書類を送付したことを伝えるための書類" />
<meta property="og:url" content="http://www.bizocean.jp/doc/detail/103587/" />
<meta property="og:image" content="http://www.bizocean.jp/doc/data/product_thumb/10/35/87/103587_m.png" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@bizoceanjp" />
<link rel="canonical" href="http://www.bizocean.jp/doc/detail/103587/" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="stylesheet" href="/doc/assets/css/48b9812.css" media="all" />
<link rel="stylesheet" href="/doc/assets/css/5494ab3.css" media="print" />
<!--[if IE 7]>
<link rel="stylesheet" href="/doc/assets/bundles/mjscommon/style/ie7.css" media="all" />
<![endif]-->
<!--[if IE 6.0]>
<script src="/doc/assets/bundles/mjscommon/library/pngfix.js"></script>
<script src="/doc/assets/bundles/mjscommon/library/pngfix_snippet.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<meta http-equiv="imagetoolbar" content="no">
<script src="/doc/assets/bundles/mjscommon/library/html5.js"></script>
<![endif]-->
<script src="/doc/assets/bundles/mjscommon/library/script.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
<script>
$script.done('jquery');
$script.done('jqueryui');
$script("http://ajaxzip3.googlecode.com/svn/trunk/ajaxzip3/ajaxzip3.js", "ajaxzip3");
var libraries = [];libraries.push("/doc/assets/js/5f07194.js");
$script.order(libraries, "libraries");
</script>
<link rel="stylesheet" type="text/css" href="/doc/assets/bundles/mjscommon/library/fancybox/jquery.fancybox-1.3.4.css" />
<script src="/doc/assets/bundles/mjscommon/library/fancybox/jquery.fancybox-1.3.4.js"></script>
<script src="/doc/assets/bundles/mjsking/js/Product/product.js"></script>
<script>
$(function(){
productUi = new ProductUi(
{
statusUrl: '/sl.php/xhr/get',
sendRateUrl: '/doc/product/evaluation/',
sendCommentUrl: '/doc/product/reviewcomment/',
loginUrl: 'https://www.bizocean.jp/doc/login/?back=%2Fdoc%2Fdetail%2F103587%2F',
maxCommentCount: '1'
},
{
'103587': { rating: $('.auto-submit-star'), comment: $('.reviewComment_open') }
}
);
productUi.run();
window.onload = function() {
if (location.hash === '#write') {
$('.reviewComment_open').click();
}
};
});
</script>
<script type="text/javascript">
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
googletag.cmd.push(function() {
googletag.defineSlot('/10943720/header_super_banner', [728, 90], 'div-gpt-ad-1358987393234-0').addService(googletag.pubads());
googletag.defineSlot('/10943720/3column-light-lower', [300, 250], 'div-gpt-ad-1346840755589-0').addService(googletag.pubads());
googletag.defineSlot('/10943720/doc-detail-lower-left', [160, 600], 'div-gpt-ad-1340328431450-0').addService(googletag.pubads());
googletag.defineSlot('/10943720/footer_super_banner', [728, 90], 'div-gpt-ad-1351221066511-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<!--{* Googleアナリティクスタグ *}-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-760010-1']);
_gaq.push(['_setCustomVar',2,'SERVER','21']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<header id="site_header">
<div id="area-site_description">
<div class="fixed_width">
<p><strong>書類送付のご案内</strong> | 無料テンプレート、雛形、フォーマット、サンプルのダウンロードは【書式の王様】</p>
<ul class="site_header_menu">
<li id="site_header_menu-c" class="biz-role-maker biz-role-member" style="display:none"><a href="/doc/logout/">ログアウト</a></li>
<li id="site_header_menu-a" class="biz-role-anon" style="display:none"><a href="https://www.bizocean.jp/doc/entry/">会員登録(無料)</a></li>
<li id="site_header_menu-b" class="biz-role-anon" style="display:none"><a href="https://www.bizocean.jp/doc/login/">ログイン</a></li>
</ul>
</div>
<!--{* .fixed_width *}-->
</div>
<!--{* #area-site_description *}-->
<div id="area-site_name">
<p><a href="/"><img src="/doc/assets/bundles/mjscommon/image/common/logo_million.png" alt="ビズオーシャン すべてのコンテンツを無料に!"></a></p>
<dl>
<dt>総会員数</dt><dd><span>1,045,872</span>人</dd>
<dt>昨日の登録数</dt><dd><span>1,449</span>人</dd>
</dl>
<div class="ad_banner ignore-cushion-hook">
<!-- header_super_banner -->
<div id='div-gpt-ad-1358987393234-0' style='width:728px; height:90px; margin:0 auto;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1358987393234-0'); });
</script>
</div>
</div>
<!--{* .ad_banner *}-->
</div>
<!--{* #area-site_name *}-->
</header>
<div class="fixed_width">
<nav id="site_nav" class="rev_beta">
<ul>
<li id="site_nav-a" ><a href="/">トップ</a></li>
<li id="site_nav-b" ><a href="/doc/mypage/about/">マイページ</a></li>
<li id="site_nav-c" class="current"><a href="/doc/">書式の王様</a></li>
<li id="site_nav-d" ><a href="/company-db/">ソーシャル企業情報</a></li>
<li id="site_nav-e" ><a href="/faq/">ビジネスQ&A</a></li>
<li id="site_nav-f" ><a href="/column/">コラム</a></li>
<li id="site_nav-g" ><a href="/column/business_support/">ビジネス支援</a></li>
</ul>
</nav>
<!--{* #site_nav *}-->
<div class="mod-topic_path">
<ul>
<li itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/" itemprop="url"><span itemprop="title">トップ</span></a></li>
<li itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"> <a href="/doc/" itemprop="url"><span itemprop="title"><strong>書式の王様</strong></span></a></li>
<li itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"> <a href="/doc/category/210/" itemprop="url"><span itemprop="title"><strong>取引文書</strong></span></a></li>
<li itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"> <a href="/doc/category/216/" itemprop="url"><span itemprop="title"><strong>案内状の無料テンプレート・雛形・文例・フォーマット・サンプル</strong></span></a></li>
<li itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb" class="current_location"> <span itemprop="title"><strong>書類送付のご案内</strong></span></li>
</ul>
</div>
<div id="area-template_count">
<p><a href="/doc/"><img src="/doc/assets/bundles/mjscommon/image/common/hdg_template_count.png" alt="書式の王様 すべての書式テンプレートを無料でダウンロードできます!"></a></p>
<ul>
<li class="template_num">書式テンプレート数<span>16,629</span>書式</li>
<li class="download_num">通算ダウンロード数<span>5,687,269</span>回</li>
</ul>
</div>
<div id="page_content" class="detail">
<div class="column">
<div id="container" class="column">
<div id="main_content">
<article>
<div id="area-special_recommend">
<div class="special_banner">
<a href="/column/business_support/nenga/"><img src="/doc/images/special/nenga2014_501_50_nenga.jpg" alt="年賀状も「書式の王様」 年賀状特集2014 全て無料 厳選素材で、ワンランクアップ無料ダウンロードで年賀状!" /></a><a href="/column/mochu/"><img src="/doc/images/special/nenga2014_501_50_mocyu.jpg" alt="喪中はこちら" /></a>
</div>
</div>
<header class="mod-heading">
<div class="heading_container heading-table">
<div class="heading-table-cell">
<div class="type_doc icon">
</div>
</div>
<div class="heading-table-cell">
<h1 class="maker-detail-title">書類送付のご案内</h1>
</div>
</div>
<!--{* .heading_container *}-->
</header>
<!--{* .mod-heading *}-->
<div class="mod-SNS_connect">
<div id="topLink">
<ul>
<li id="FB_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3a%2f%2fwww%2ebizocean%2ejp%2Fdoc%2Fdetail%2F103587%2F&send=false&layout=button_count&width=150&show_faces=true&action=like&colorscheme=light&font&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:105px; height:21px;" allowTransparency="true"></iframe></li>
<li id="tweet"><a href="http://twitter.com/share" data-url="http://www.bizocean.jp/doc/detail/103587/" data-text="書類送付のご案内" data-hashtags="書式の王様" class="twitter-share-button" data-count="horizontal" data-lang="ja">ツイート</a></li>
<li id="hatena"><a href="http://b.hatena.ne.jp/entry/http://www.bizocean.jp/doc/detail/103587/" class="hatena-bookmark-button" data-hatena-bookmark-title="書類送付のご案内" data-hatena-bookmark-layout="simple-balloon" title="このエントリーをはてなブックマークに追加"><img src="http://b.st-hatena.com/images/entry-button/button-only@2x.png" alt="このエントリーをはてなブックマークに追加" width="20" height="20" style="border: none;" /></a></li>
<!--<li class="G_plusone"></li>-->
<li id="googleBtn"><g:plusone size="medium" href="http://www.bizocean.jp/doc/detail/103587/" ></g:plusone></li>
</ul>
</div>
<div class="recommend_mail"><a href="mailto:?subject=%5Bbizocean%5D%E3%81%8A%E3%81%99%E3%81%99%E3%82%81%E3%83%A1%E3%83%BC%E3%83%AB%0A&body=%0A%E3%81%8A%E3%81%99%E3%81%99%E3%82%81%EF%BC%9Ahttp%3A%2F%2Fwww.bizocean.jp%2Fdoc%2Fdetail%2F103587%2F%0A%0A%E4%BC%9A%E5%93%A1%E7%99%BB%E9%8C%B2%E3%81%AF%E3%81%93%E3%81%A1%E3%82%89%E2%86%92https%3A%2F%2Fwww.bizocean.jp%2Fdoc%2Fentry%2F%0A%0Abizocean%EF%BC%88%E3%83%93%E3%82%BA%E3%82%AA%E3%83%BC%E3%82%B7%E3%83%A3%E3%83%B3%EF%BC%89-%E3%81%99%E3%81%B9%E3%81%A6%E3%81%AE%E3%83%93%E3%82%B8%E3%83%8D%E3%82%B9%E3%82%B3%E3%83%B3%E3%83%86%E3%83%B3%E3%83%84%E3%82%92%E7%84%A1%E6%96%99%E3%81%AB%EF%BC%81%0Ahttp%3A%2F%2Fwww.bizocean.jp%2F%0A%0A">メールで共有する</a></div>
</div>
<!--{* .mod-SNS_connect *}-->
<div id="area-document_detail_information">
<div class="column">
<div id="document_image" class="table-cell">
<div id="document_image_frame">
<a href="/doc/detail/103587i/"><img src="/doc/data/product_thumb/10/35/87/103587_m.png" alt="書類送付のご案内"></a>
</div>
<!--{* #document_image_frame *}-->
<p class="btn_zoom">
<a href="/doc/detail/103587i/" >
<img src="/doc/assets/bundles/mjscommon/image/doc/detail/btn_zoom_off.png" alt="拡大">
</a>
</p>
<div id="document_share_menu">
<div class="column">
<div id="document_share">
<a href="" onclick="$('#document_share_tag').toggle(); return false;" >
<img src="/doc/assets/bundles/mjscommon/image/doc/detail/btn_share_off.png" alt="共有/埋め込み">
</a>
</div>
<!--{* #document_share *}-->
<div id="document_rating">
<p><img src="/doc/assets/bundles/mjscommon/image/doc/detail/hdg_rating.png" alt="評価する" class="hdg_rating" /><input name="recommendLevel" type="radio" class="auto-submit-star" value="1" /><input name="recommendLevel" type="radio" class="auto-submit-star" value="2" /><input name="recommendLevel" type="radio" class="auto-submit-star" value="3" /><input name="recommendLevel" type="radio" class="auto-submit-star" value="4" /><input name="recommendLevel" type="radio" class="auto-submit-star" value="5" /></p></div>
<!--{* #document_rating *}-->
</div>
<!--{* .column *}-->
</div>
<!--{* #document_share_menu *}-->
</div>
<!--{* #document_image *}-->
<div id="document_data" class="table-cell">
<div id="document_data_table">
<div class="data_header"><p>書式・テンプレート情報</p></div>
<table class="mod-data_table">
<tbody>
<tr>
<th>ファイル形式</th>
<td>Word</td>
</tr>
<tr>
<th>DL回数</th>
<td>4755</td>
</tr>
<tr>
<th>掲載日時</th>
<td>2008/01/06</td>
</tr>
<tr>
<th>評価</th>
<td><span class="list_rating_star list_rating_0"></span>
</td>
</tr>
<tr class="attribute">
<th colspan="2">カテゴリ</th>
</tr>
<tr class="attribute">
<td class="category_list" colspan="2" >
<p><a href="/doc/category/210/">取引文書</a>
>
<a href="/doc/category/216/">案内状</a></p>
</td>
</tr>
<tr class="attribute">
<th colspan="2">部門</th>
</tr>
<tr class="attribute">
<td colspan="2">
<a href="/doc/category/331/" >共通</a>
</td>
</tr>
</tbody>
</table>
<div class="author">
<div class="data_header"><p>書式作者情報</p></div>
<table>
<tbody>
<tr>
<td><a href="/doc/maker/19/">レッツ総合事務所</a></td>
</tr>
</tbody>
</table>
</div>
<!--{* .author *}-->
</div>
<!--{* #document_data_table *}-->
</div>
<!--{* #document_data *}-->
</div>
<!--{* .column *}-->
</div>
<!--{* #area-document_detail_information *}-->
<div id="document_share_tag" style="display:none">
<p>この書式をサイトやブログに設置される場合は、こちらのタグを貼り付けてください。</p>
<!-- textarea><div><a href="{$書式URL}"><img alt="{$書式名}" src="{$書式サムネイルS_URL" />{$書式名}</a></div></textarea -->
<textarea><div><a href="http://www.bizocean.jp/doc/detail/103587/"><img alt="書類送付のご案内" src="http://www.bizocean.jp/doc/data/product_thumb/10/35/87/103587_m.png" />書類送付のご案内</a></div></textarea>
</div>
<!--{* #document_share_tag *}-->
<div id="document_detail_description">
<p>書類送付のご案内とは、書類を送付したことを伝えるための書類</p>
</div>
<!--{* #document_detail_description *}-->
<div class="document_download">
<p>
<a href="/doc/download/confirm/103587/" ><img src="/doc/assets/bundles/mjscommon/image/doc/detail/btn_download_off.png" alt="この書式をダウンロード"></a>
</p>
</div>
<!--{* .document_download *}-->
<section class="related_document_section">
<header class="mod-heading">
<div class="heading_container">
<h3 class="doc">案内状の書式テンプレート</h3>
</div>
<!--{* .heading_container *}-->
</header>
<!--{* .mod-heading *}-->
<div class="mod-related_document_list">
<div class="column">
<div class="related_document">
<div><a href="/doc/detail/103575/"><img src="/doc/data/product_thumb/10/35/75/103575_s.png" alt="銀行振込口座変更のお知らせ" ></a></div>
<p><a href="/doc/detail/103575/">銀行振込口座変更のお知らせ</a></p>
</div>
<!--{* .related_document *}-->
<div class="related_document">
<div><a href="/doc/detail/100132/"><img src="/doc/data/product_thumb/10/01/32/100132_s.png" alt="懇親会・親睦会" ></a></div>
<p><a href="/doc/detail/100132/">懇親会・親睦会</a></p>
</div>
<!--{* .related_document *}-->
<div class="related_document">
<div><a href="/doc/detail/108647/"><img src="/doc/data/product_thumb/10/86/47/108647_s.png" alt="社外宛忘年会の案内状" ></a></div>
<p><a href="/doc/detail/108647/">社外宛忘年会の案内状</a></p>
</div>
<!--{* .related_document *}-->
<div class="related_document">
<div><a href="/doc/detail/515732/"><img src="/doc/data/product_thumb/51/57/32/515732_s.png" alt="忘年会開催のご案内" ></a></div>
<p><a href="/doc/detail/515732/">忘年会開催のご案内</a></p>
</div>
<!--{* .related_document *}-->
<div class="related_document">
<div><a href="/doc/detail/107289/"><img src="/doc/data/product_thumb/10/72/89/107289_s.png" alt="訃報の案内状004" ></a></div>
<p><a href="/doc/detail/107289/">訃報の案内状004</a></p>
</div>
<!--{* .related_document *}-->
</div>
</div>
<div class="category-more-link"><a href="/doc/category/216/">»他の案内状の書式テンプレートを見る(全 531 件)</a></div>
</section>
<!--{* .related_document_section *}-->
<section id="area-related_column_posts" class="document_section" style="display:none;">
<div class="mod-heading">
<div class="heading_container">
<h2 class="doc"> この書式の書き方コラム</h2>
</div>
<!--{* .heading_container *}-->
</div>
<!--{* .mod-heading *}-->
<div class="section_content">
<!-- product.js -->
</div>
<!--{* .section_content *}-->
</section>
<!--{* #area-related_column_posts *}-->
<section id="area-user_review">
<div class="mod-heading">
<div class="heading_container">
<h2 class="review">レビュー/コメント</h2>
</div>
<!--{* .heading_container *}-->
</div>
<!--{* .mod-heading *}-->
<div id="write_comment" >
レビュー/コメントはまだ投稿されていません。<br>
皆さまのレビュー/コメントをお待ちしています。
</div>
<div class="write">
<p><a href="#write_board" class="inline reviewComment_open"><img src="/doc/assets/bundles/mjscommon/image/doc/detail/btn_write_off.png" alt="レビュー/コメントを書く" /></a></p></div>
<div id="area-write_board">
<div id="write_board">
<div id="review_comment_show_title" class="comment-section title">
<p class="write_board_header">レビュー/コメント</p>
</div>
<div class="comment-section input">
<div id="review_comment_show_input_error" class="input-error" data-prototype="<p>%message%</p>">
</div>
<form>
<textarea class="comment"></textarea>
<p>
<button class="send" type="button"><img src="/doc/assets/bundles/mjscommon/image/doc/detail/btn_comment_submit_off.png" alt="書き込む" /></button>
</p>
</form>
</div>
<div id="review_comment_show_error" class="comment-section error">
<b><font color="#ff0000">1日の投稿回数が上限になっておりますので、投稿できません。翌日以降に再度お試しください。</font></b>
</div>
<div id="review_comment_show_complete" class="comment-section complete">
<div id="write_comment_complete">
レビュー/コメントを投稿しました。<br>反映までしばらくお待ち下さい。
</div>
<br>
<a href="" onclick="parent.$.fancybox.close();return false;" >
<img src="/doc/assets/bundles/mjscommon/image/doc/detail/btn_close_off.png" alt="閉じる">
</a>
</div>
</div>
<!--{* #write_board *}-->
</div>
<!--{* #area-write_board *}-->
</section>
<!--{* #area-user_review *}-->
<div class="mod-targeting_ad_text ignore-cushion-hook">
<div id="cm8placeholder-1"></div>
<noscript>
<a href='http://web-jp.ad-v.jp/adam/ep/click/MJS.Bizocean2010.Default.Syosiki.Etc/Text?cat=MJS.Bizocean2010.Default.Syosiki.Etc' target='_blank'>
<img src='http://web-jp.ad-v.jp/adam/noscript?cat=MJS.Bizocean2010.Default.Syosiki.Etc&format=Text' border='0'></a>
</noscript>
<p class="about_targeting_ad"><a href="http://www.bizocean.jp/column/insertion/">広告掲載について</a></p>
</div>
<!--{* .mod-targeting_ad_text *}-->
<section class="related_document_section">
<header class="mod-heading">
<div class="heading_container">
<h3 class="doc"><a href="/doc/maker/19/">レッツ総合事務所</a>が作成した他の書式</h3>
</div>
<!--{* .heading_container *}-->
</header>
<!--{* .mod-heading *}-->
<div class="mod-related_document_list">
<div class="column">
<div class="related_document">
<div><a href="/doc/detail/103666/"><img src="/doc/data/product_thumb/10/36/66/103666_s.png" alt="履歴書06" ></a></div>
<p><a href="/doc/detail/103666/">履歴書06</a></p>
</div>
<!--{* .related_document *}-->
<div class="related_document">
<div><a href="/doc/detail/103665/"><img src="/doc/data/product_thumb/10/36/65/103665_s.png" alt="生計の概要を記載した書面" ></a></div>
<p><a href="/doc/detail/103665/">生計の概要を記載した書面</a></p>
</div>
<!--{* .related_document *}-->
<div class="related_document">
<div><a href="/doc/detail/103664/"><img src="/doc/data/product_thumb/10/36/64/103664_s.png" alt="親族の概要を記載した書面" ></a></div>
<p><a href="/doc/detail/103664/">親族の概要を記載した書面</a></p>
</div>
<!--{* .related_document *}-->
<div class="related_document">
<div><a href="/doc/detail/103663/"><img src="/doc/data/product_thumb/10/36/63/103663_s.png" alt="自宅、勤務先、事業所付近の略図" ></a></div>
<p><a href="/doc/detail/103663/">自宅、勤務先、事業所付近の略図</a></p>
</div>
<!--{* .related_document *}-->
<div class="related_document">
<div><a href="/doc/detail/103662/"><img src="/doc/data/product_thumb/10/36/62/103662_s.png" alt="事業の概要を記載した書面" ></a></div>
<p><a href="/doc/detail/103662/">事業の概要を記載した書面</a></p>
</div>
<!--{* .related_document *}-->
</div>
<!--{* .column *}-->
</div>
<!--{* .mod-related_document_list *}-->
</section>
<!--{* .related_document_section *}-->
<section id="area-popular_document" class="document_section">
<!-- 見出し -->
<div class="mod-heading">
<div class="heading_container">
<h2 class="doc">よく検索される書式・テンプレート</h2>
</div>
<!--{* .heading_container *}-->
</div>
<!--{* .mod-heading *}-->
<!-- 一覧 -->
<div class="section_content">
<div class="mod-popular_document_list">
<ul>
<!-- ページ下部 よく検索される書式・テンプレート -->
<li><a href="/doc/category/27/" class="openUsedkeyword">請求書</a></li>
<li><a href="/doc/category/70/" class="openUsedkeyword">職務経歴書</a></li>
<li><a href="/doc/category/61/" class="openUsedkeyword">領収書</a></li>
<li><a href="/doc/category/81/" class="openUsedkeyword">雇用契約書</a></li>
<li><a href="/doc/category/278/" class="openUsedkeyword">報告書</a></li>
<li><a href="/doc/category/264/" class="openUsedkeyword">始末書</a></li>
<li><a href="/doc/category/923/" class="openUsedkeyword">デザインテンプレ</a></li>
<li><a href="/doc/category/255/" class="openUsedkeyword">議事録</a></li>
<li><a href="/doc/category/29/" class="openUsedkeyword">注文書</a></li>
<li><a href="/doc/category/100/" class="openUsedkeyword">出勤簿</a></li>
</ul>
</div>
<!--{* .mod-popular_document_list *}-->
</div>
<!--{* .section_content *}-->
</section>
<!--{* #area-popular_document *}-->
<script>
(function (w, d) {
w.___gcfg = {lang: "ja"};
var s, e = d.getElementsByTagName("script")[0],
a = function (u, i) {
if (!d.getElementById(i)) {
s = d.createElement("script");
s.src = u;
if (i) {s.id = i;}
e.parentNode.insertBefore(s, e);
}
};
a("https://apis.google.com/js/plusone.js");
a("//b.st-hatena.com/js/bookmark_button_wo_al.js");
a("//platform.twitter.com/widgets.js", "twitter-wjs");
a("//connect.facebook.net/ja_JP/all.js#xfbml=1", "facebook-jssdk");
})(this, document);
</script>
</article>
</div>
<div id="sub_content">
<div id="search_menu">
<script src="/doc/assets/bundles/mjsking/js/Form/productSearch.js" type="text/javascript"></script>
<section id="area-free_word_filter">
<div class="mod-sub_header">
<h3>キーワードで絞り込む</h3>
</div>
<!--{* .mod-extra_header *}-->
<div class="search_menu_content">
<div class="mod-free_word_filter">
<form action="/doc/search/" method="get" id="keyword_search" class="product_search">
<label for="input_free_word">検索キーワード</label>
<input type="text" class="input_text" id="input_free_word" name="keyword" value="">
<p><button type="submit"><img src="/doc/assets/bundles/mjscommon/image/common/btn_submit-b_off.png" alt="検索"></button></p>
</form>
</div>
<!--{* .mod-free_word_filter *}-->
</div>
<!--{* .search_menu_content *}-->
</section>
<!--{* #area-search_by_file_type *}-->
<section id="area-search_by_category" class="search_by_list">
<div class="mod-sub_header">
<h3>書式カテゴリ</h3>
</div>
<!--{* .mod-extra_header *}-->
<div class="search_menu_content">
<ul class="search_menu_list">
<li><a href="/doc/list/" class="tree_top"><span>全てのカテゴリ</span></a>
<ul>
<li>
<a href="/doc/category/210/"><span>取引文書<span class="produt_count">(4298)</span></span></a>
<ul>
<li><a href="/doc/category/216/" class="current"><span class="lowest_category">案内状<span class="product_count">(531)</span></span></a></li>
</ul>
</li>
<li><a href="/doc/category/331/"><span>共通<span class="product_count">(3776)</span></span></a></li>
</ul>
</li>
</ul>
<!--{* .search_menu_list *}-->
</div>
<!--{* .search_menu_content *}-->
</section>
<!--{* #area-search_by_category *}-->
<section id="area-search_by_file_type" class="search_by_list">
<div class="mod-sub_header">
<h3>ファイルで絞り込む</h3>
</div>
<!--{* .mod-extra_header *}-->
<div class="search_menu_content">
<form action="/doc/search/" method="get" id="filetype_search" class="product_search">
<ul class="search_menu_list">
<li><input type="checkbox" class="input_checkbox" id="file_type_PDF" name="filetypes" value="pdf" ><label for="file_type_PDF">PDF</label></li>
<li><input type="checkbox" class="input_checkbox" id="file_type_word" name="filetypes" value="doc" ><label for="file_type_word">Word</label></li>
<li><input type="checkbox" class="input_checkbox" id="file_type_excel" name="filetypes" value="xls" ><label for="file_type_excel">Excel</label></li>
<li><input type="checkbox" class="input_checkbox" id="file_type_ppt" name="filetypes" value="ppt" ><label for="file_type_ppt">Powerpoint</label></li>
<li><input type="checkbox" class="input_checkbox" id="file_type_WMF" name="filetypes" value="wmf" ><label for="file_type_WMF">WMF</label></li>
<li><input type="checkbox" class="input_checkbox" id="file_type_text" name="filetypes" value="txt" ><label for="file_type_text">text</label></li>
<li><input type="checkbox" class="input_checkbox" id="file_type_zip" name="filetypes" value="zip" ><label for="file_type_zip">画像(jpg,gif,png)/zip</label></li>
<li class="submit_btn"><button type="submit"><img src="/doc/assets/bundles/mjscommon/image/common/btn_submit-b_off.png" alt="検索"></button></li>
</ul>
</form>
</div>
<!--{* .search_menu_content *}-->
</section>
<!--{* #area-search_by_file_type *}-->
</div>
<div class="mod-targeting_ad_banner ignore-cushion-hook">
<div id='div-gpt-ad-1340328431450-0' style='width:160px; height:600px;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1340328431450-0'); });
</script>
</div>
</div>
<!--{* .mod-targeting_ad_text *}-->
</div>
</div>
<!-- {* #container *} -->
<div id="extra_content">
<aside>
<div class="mod-targeting_ad_banner ignore-cushion-hook">
<div id="cm8placeholder-2"></div>
<noscript>
<a href='http://web-jp.ad-v.jp/adam/ep/click/MJS.Bizocean2010.Default.Syosiki.Etc/Rectangle?cat=MJS.Bizocean2010.Default.Syosiki.Etc' target='_blank'>
<img src='http://web-jp.ad-v.jp/adam/noscript?cat=MJS.Bizocean2010.Default.Syosiki.Etc&format=Rectangle' border='0'></a>
</noscript>
<p class="about_targeting_ad"><a href="http://www.bizocean.jp/column/insertion/">広告掲載について</a></p>
</div>
<!--{* .mod-targeting_ad_text *}-->
<div class="mod-user_menu">
<div class="member biz-role-member biz-role-maker" style="display:none">
<p>ようこそ<span class="login-nick-name"></span>さん</p>
<ul>
<li class="biz-role-member biz-role-maker" style="display:none"><a href="/doc/mypage/about/">マイページへ</a></li>
<!-- <li><a href="javascript:;">お知らせ</a></li> -->
<li class="biz-role-maker" style="display:none"><a href="/doc/mypage/maker/document/">作者マイページへ</a></li>
</ul>
</div>
<!--{* .member *}-->
<div class="guest biz-role-anon" style="display:none">
<p>ようこそ<span>ゲスト</span>さん</p>
<ul>
<li><a href="https://www.bizocean.jp/doc/entry/"><img src="/doc/assets/bundles/mjscommon/image/common/btn_registration_off.png" alt="会員登録(無料)"></a></li>
<li><a href="https://www.bizocean.jp/doc/login/"><img src="/doc/assets/bundles/mjscommon/image/common/btn_login_off.png" alt="ログイン"></a></li>
</ul>
</div>
<!--{* .guest *}-->
</div>
<!--{* .mod-user_menu *}-->
<section id="area-newly_document"><div class="mod-extra_header"><h3>最近アップロードされた書式</h3></div><div class="section_content"><div class="mod-content_overview_row"><div class="thumbnail table_cell"><a href="/doc/detail/517817/"><img src="/doc/data/product_thumb/51/78/17/517817_s.png" alt="納品書・請求書" /></a></div><div class="description table_cell"><table class="mod-data_table"><tbody><tr class="title"><th colspan="2"><a href="/doc/detail/517817/">納品書・請求書</a></th></tr><tr><th>掲載日時</th><td class="td-date">2013/12/13</td></tr><tr class="attribute"><th colspan="2">カテゴリ</th></tr><tr class="attribute"><td class="category_list" colspan="2"><a href="/doc/category/32/">納品書</a></td></tr></tbody></table></div></div><div class="mod-content_overview_row"><div class="thumbnail table_cell"><a href="/doc/detail/517816/"><img src="/doc/data/product_thumb/51/78/16/517816_s.png" alt="お月見うさぎ" /></a></div><div class="description table_cell"><table class="mod-data_table"><tbody><tr class="title"><th colspan="2"><a href="/doc/detail/517816/">お月見うさぎ</a></th></tr><tr><th>掲載日時</th><td class="td-date">2013/12/13</td></tr><tr class="attribute"><th colspan="2">カテゴリ</th></tr><tr class="attribute"><td class="category_list" colspan="2"><a href="/doc/category/401/">秋のイラスト</a><a href="/doc/category/435/">動物</a><a href="/doc/category/908/">干支(卯・兎)</a></td></tr></tbody></table></div></div><div class="mod-content_overview_row"><div class="thumbnail table_cell"><a href="/doc/detail/517815/"><img src="/doc/data/product_thumb/51/78/15/517815_s.png" alt="イチゴのショートケーキ" /></a></div><div class="description table_cell"><table class="mod-data_table"><tbody><tr class="title"><th colspan="2"><a href="/doc/detail/517815/">イチゴのショートケーキ</a></th></tr><tr><th>掲載日時</th><td class="td-date">2013/12/13</td></tr><tr class="attribute"><th colspan="2">カテゴリ</th></tr><tr class="attribute"><td class="category_list" colspan="2"><a href="/doc/category/348/">おやつ</a></td></tr></tbody></table></div></div><div class="mod-content_overview_row"><div class="thumbnail table_cell"><a href="/doc/detail/517814/"><img src="/doc/data/product_thumb/51/78/14/517814_s.png" alt="ヒアリングシート" /></a></div><div class="description table_cell"><table class="mod-data_table"><tbody><tr class="title"><th colspan="2"><a href="/doc/detail/517814/">ヒアリングシート</a></th></tr><tr><th>掲載日時</th><td class="td-date">2013/12/12</td></tr><tr class="attribute"><th colspan="2">カテゴリ</th></tr><tr class="attribute"><td class="category_list" colspan="2"><a href="/doc/category/208/">アンケート</a><a href="/doc/category/325/">営業・販売部門</a></td></tr></tbody></table></div></div><div class="mod-content_overview_row"><div class="thumbnail table_cell"><a href="/doc/detail/517813/"><img src="/doc/data/product_thumb/51/78/13/517813_s.png" alt="伝言メモ(電話対応)" /></a></div><div class="description table_cell"><table class="mod-data_table"><tbody><tr class="title"><th colspan="2"><a href="/doc/detail/517813/">伝言メモ(電話対応)</a></th></tr><tr><th>掲載日時</th><td class="td-date">2013/12/12</td></tr><tr class="attribute"><th colspan="2">カテゴリ</th></tr><tr class="attribute"><td class="category_list" colspan="2"><a href="/doc/category/289/">電話メモ</a><a href="/doc/category/288/">伝言メモ</a></td></tr></tbody></table></div></div></div><p class="right"><a href="/doc/list/">最新の書式をもっと見る</a></p></section>
<section id="area-recommend_information">
<div class="mod-extra_header">
<h3>おすすめ情報</h3>
</div>
<!--{* .mod-extra_header *}-->
<div class="section_content">
<!-- 右メニュー おすすめ情報 -->
<div class="recommend_content">
<div class="image">
<a href="/column/adv_questant/"><img src="http://cache.bizocean.jp/doc/images/recommend/questant_bn100.gif" alt="無料アンケート作成ツール「Questant」" width="73" style="border:1px #ccc solid;"></a>
</div>
<!--{* .image *}-->
<div class="description">
<dl>
<dt><a href="/column/adv_questant/">無料アンケート作成ツール「Questant」</a></dt>
<dd>「企画」「マーケティング」「事業計画」「PR」に!新たなビジネスチャンスが得られるサービスが誕生。</dd>
</dl>
</div>
<!--{* .description *}-->
</div>
<!--{* .recommend_content *}-->
<!-- 右メニュー おすすめ情報 -->
<div class="recommend_content">
<div class="image">
<a href="/column/business_support/nenga/"><img src="http://cache.bizocean.jp/doc/images/recommend/2014_75_75_nenga.jpg" alt="「年賀状2014年うま年(ウマ・午・馬)」特集"></a>
</div>
<!--{* .image *}-->
<div class="description">
<dl>
<dt><a href="/column/business_support/nenga/">「年賀状2014年うま年(ウマ・午・馬)」特集</a></dt>
<dd>年賀状2014年うま年(ウマ・午・馬)のはがきデザイン、イラスト、印刷クーポンを無料ダウンロード!はがきデザインはword形式のデータなのでデザイン、色、フォントも編集が可能となっています。</dd>
</dl>
</div>
<!--{* .description *}-->
</div>
<!--{* .recommend_content *}-->
<!-- 右メニュー おすすめ情報 -->
<div class="recommend_content">
<div class="image">
<a href="/column/formatting_guide/guide319/"><img src="http://cache.bizocean.jp/doc/data/product_thumb/51/68/33/516833_s.png" alt="「企画書のためのマーケティング分析フレームワーク」特集" width="75" height="75"></a>
</div>
<!--{* .image *}-->
<div class="description">
<dl>
<dt><a href="/column/formatting_guide/guide319/">「企画書のためのマーケティング分析フレームワーク使い方」コラム</a></dt>
<dd>3C、4P、6W2Hなど、例文をもちいて企画書に盛り込むポイントを要領よくまとめてあります。サンプルテンプレートも無料でダウンロードできます。</dd>
</dl>
</div>
<!--{* .description *}-->
</div>
<!--{* .recommend_content *}-->
<!-- 右メニュー おすすめ情報 -->
<div class="recommend_content">
<div class="image">
<a href="/author/index.html"><img src="http://cache.bizocean.jp/doc/images/recommend/author.png" alt="書式テンプレート作者募集"></a>
</div>
<!--{* .image *}-->
<div class="description">
<dl>
<dt><a href="/author/index.html">書式・テンプレート作者募集</a></dt>
<dd>あなたが作成した書式・テンプレートをアップロードして報酬を得よう!</dd>
</dl>
</div>
<!--{* .description *}-->
</div>
<!--{* .recommend_content *}-->
</div>
<!--{* .section_content *}-->
</section>
<!--{* #area-recommend_information *}-->
<div class="mod-targeting_ad_banner ignore-cushion-hook">
<!--/* adfunnel.microad.jp Javascript Tag v */-->
<script type='text/javascript'><!--//<![CDATA[
document.MAX_ct0 ='INSERT_CLICKURL_HERE';
if (location.protocol=='https:') {
} else {
var m3_u = 'http://adf.send.microad.jp/ajs.php';
var m3_r = Math.floor(Math.random()*99999999999);
if (!document.MAX_used) document.MAX_used = ',';
document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
document.write ("?zoneid=6021");
document.write ('&snr=2&cb=' + m3_r);
if (document.MAX_used != ',') document.write ("&exclude=" + document.MAX_used);
document.write (document.charset ? '&charset='+document.charset : (document.characterSet ? '&charset='+document.characterSet : ''));
document.write ("&loc=" + encodeURIComponent(window.location));
if (document.referrer) document.write ("&referer=" + encodeURIComponent(document.referrer));
if (document.context) document.write ("&context=" + encodeURIComponent(document.context));
if ((typeof(document.MAX_ct0) != 'undefined') && (document.MAX_ct0.substring(0,4) == 'http')) {
document.write ("&ct0=" + encodeURIComponent(document.MAX_ct0));
}
if (document.mmm_fo) document.write ("&mmm_fo=1");
document.write ("'><\/scr"+"ipt>");
}
//]]>--></script><noscript><a href='http://adf.send.microad.jp/ck.php?n=a946e3b2&cb=INSERT_RANDOM_NUMBER_HERE' target='_blank'><img src='http://adf.send.microad.jp/avw.php?zoneid=6021&cb=INSERT_RANDOM_NUMBER_HERE&n=a946e3b2&ct0=INSERT_CLICKURL_HERE&snr=2' border='0' alt='' /></a></noscript>
</div>
<!--{* .mod-targeting_ad_text *}-->
</aside>
</div>
<!-- {* #extra_content *} -->
</div>
<!--{* .column *}-->
</div>
<!--{* #page_content *}-->
<div class="mod-scroll_up">
<p><a href="#top"><strong>書類送付のご案内 ページ上部へ</strong></a></p>
</div>
<!--{* .mod-scroll_up *}-->
<footer id="site_footer">
<div class="ad_banner ignore-cushion-hook">
<!-- footer_super_banner -->
<div id='div-gpt-ad-1351221066511-0' style='width:728px; height:90px; margin:0 auto;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1351221066511-0'); });
</script>
</div>
</div>
<!--{* .ad_banner *}-->
<nav>
<ul>
<li><a href="http://www.bizocean.jp/column/overview/">運営会社</a></li>
<li><a href="http://www.bizocean.jp/column/insertion/">広告掲載</a></li>
<li><a href="http://www.bizocean.jp/column/biz_partner_ecruit/">ビジネスパートナー募集</a></li>
<li><a href="http://www.mjs.co.jp/recruit/">採用情報</a></li>
<li><a href="http://www.bizocean.jp/column/security_policy/">セキュリティポリシー</a></li>
<li><a href="http://www.bizocean.jp/column/copyright_disclaimer/">免責事項</a></li>
<li><a href="http://www.bizocean.jp/column/terms/">利用規約</a></li>
<li><a href="https://www.bizocean.jp/doc/contact/">お問い合わせ</a></li>
<li class="last-child"><a href="http://www.bizocean.jp/sitemap/">サイトマップ</a></li>
</ul>
</nav>
<div class="site_copyright">
<p><small>Copyright® 2004 - 2013 MIROKU JYOHO SERVICE CO., LTD. All rights reserved. Powered by TVS</small></p>
<p>※「bizocean」 「書式の王様」は、<a href="http://www.mjs.co.jp/company/software/erp/">ERP</a>の<a href="http://www.mjs.co.jp">株式会社ミロク情報サービス</a>の登録商標です。</p>
</div>
<!--{* .site_copyright *}-->
</footer>
<!--{* #site_footer *}-->
</div>
<!--{* .fixed_width *}-->
<script>
var getDeepSetObject = function (keys, value, org) {
if (keys.length == 0) {
return null;
}
if (keys.length == 1) {
return value;
}
var nextOrg = org[keys[0]] || {};
keys.shift();
org[keys[0]] = getDeepSetObject(keys, value, org);
return org;
};
var queryToObject = function (str) {
var params = str.split('&');
var data = {};
for (var i in params) {
var p = params[i].split('=');
var keys = p[0].split(']').join('').split('[');
data[keys[0]] = getDeepSetObject(keys, p[1], data[keys[0]] || {});
};
return data;
};
var initMemberInfo = function (data) {
window.memberInfo = data;
$(function() {
//会員系ウィジェットの初期化
_gaq.push(['_setCustomVar',1,'User Type',window.memberInfo.member_state.ga_status]);
var role = window.memberInfo.member_state.role;
$('.biz-role-'+role).show();
$('.login-nick-name').text(window.memberInfo.member_state.nick_name);
if (memberInfo.member_state.role === 'anon') {
$('.site_header_menu').removeClass('logout');
} else {
$('.site_header_menu').addClass('logout');
}
});
};
if (document.cookie.indexOf('auth_state_change=0') !== -1) {
var authStateStart = document.cookie.indexOf('auth_state=');
if (authStateStart !== -1) {
var strFrom = authStateStart + ('auth_state='.length);
var strTo = document.cookie.indexOf(';', strFrom);
if (strTo === -1) {
strTo = document.cookie.length;
}
var str = document.cookie.substring(strFrom, strTo);
initMemberInfo(queryToObject(decodeURIComponent(str)));
}
}
window.ajaxDone = false;
var queue = {
'member_state': ['member_state', []],
'cm8_segment': ['cm8_segment', []]
};
if (!window.memberInfo) {
$.ajax({
async: false,
cache: false,
url: '/sl.php/xhr/get',
data: {
queue: queue
},
success: function(data, status) {
window.memberInfo = memberInfo = data;
initMemberInfo(data);
document.cookie = 'auth_state_change=0; path=/';