1:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2:<html lang="ja">
3:<head>
4:<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
5:<title> </title>
6:<meta http-equiv="Content-Script-Type" content="text/javascript">
7:<script type="text/javascript">
8:<!―
9:var docTitle = "Waiting";
10:var statusMsg = " しばらくお待ちください。 ";
11:var timer;
12:
13:function showItem( idDiv, idLayer )
14:{
15: if ( document.getElementById )
16: {
17: document.getElementById(idDiv).style.visibility = "visible";
18: }
19: else
20: if ( document.layers )
21: {
22: document.layers[idLayer].visibility = "show";
23: }
24: else
25: if ( document.all )
26: {
27: document.all(idDiv).style.visibility = "visible";
28: }
29:{
30:
31:function disp(){
32: statusMsg = statusMsg.substring(1, statusMsg.length) + statusMsg.substring(0, 1);
33: window.status = statusMsg;
34: setTimeout( 'disp()', 250 );
35: return;
36:}
37:
38:function communicationsend(){
39: parent.communication.location.href = "<!--SSO_CDS_RESPONSE_PATH-->";
40: return;
41:}
42:
43:function autosend(){
44: showItem( "divMsg", "layerMsg" );
45: parent.document.title=docTitle;
46: disp();
47: return;
48:}
49:// -->
50:</script>
51:</head>
52:<body onload="autosend()">
53:
54:<noscript>
55:Please enable JavaScript on your browser.
56:</noscript>
57:
58:<layer id="layerMsg" visibility="hidden">
59:<div id="divMsg" style="visibility: hidden">
60:<table border="0">
61:<tr><td>
62:認証サーバ間連携の処理を実行中です。
63:</td></tr>
64:</table>
65:<h3 align="right">Interstage Single Sign-on</h3>
66:</div>
67:</layer>
68:</body>
69:</html>
|