index.html revision 984ea967792540448d05fba2ac6fad5dadf91fd6
2d0611ffc9f91c5fc2ddccb93f9a3d17791ae650takashi<!--
2d0611ffc9f91c5fc2ddccb93f9a3d17791ae650takashi DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd The contents of this file are subject to the terms
6ae232055d4d8a97267517c5e50074c2c819941and of the Common Development and Distribution License
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd (the License). You may not use this file except in
6ae232055d4d8a97267517c5e50074c2c819941and compliance with the License.
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd You can obtain a copy of the License at
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd https://opensso.dev.java.net/public/CDDLv1.0.html or
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd opensso/legal/CDDLv1.0.txt
e1e8390280254f7f0580d701e583f670643d4f3fnilgun See the License for the specific language governing
e1e8390280254f7f0580d701e583f670643d4f3fnilgun permission and limitations under the License.
e1e8390280254f7f0580d701e583f670643d4f3fnilgun
e1e8390280254f7f0580d701e583f670643d4f3fnilgun When distributing Covered Code, include this CDDL
Header Notice in each file and include the License file
at opensso/legal/CDDLv1.0.txt.
If applicable, add the following below the CDDL Header,
with the fields enclosed by brackets [] replaced by
your own identifying information:
"Portions Copyrighted [year] [name of copyright owner]"
$Id: index.html,v 1.4 2008/06/25 05:44:40 qcheng Exp $
-->
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<title>Please Wait While Redirecting to console</title>
<script language="JavaScript"> <!--
function redirectToConsole() {
var params = getQueryParameters();
var url = '/base/AMAdminFrame';
if (params != '') {
url += params + '&amconsoleRedirect=1&' + getDateStamp();
} else {
url += '?&amconsoleRedirect=1&' + getDateStamp();
}
top.location.replace(url);
}
function getDateStamp() {
var s='';
while (s.length < 80) {
t = (48 + Math.round(Math.random() * 74));
r = ((t<58) || ((t>64) && (t<91)) || ((t>96) && (t<123))) ?
String.fromCharCode(t) : '';
s += r;
}
return s;
}
function getQueryParameters() {
var loc = '' + location;
var idx = loc.indexOf('?');
if (idx != -1) {
return loc.substring(idx);
} else {
return '';
}
}
//-->
</script>
</head>
<body bgcolor="#FFFFFF" onLoad="redirectToConsole();">
</body>
</html>