index.html revision 984ea967792540448d05fba2ac6fad5dadf91fd6
0N/A<!--
3909N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0N/A
0N/A Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
0N/A
0N/A The contents of this file are subject to the terms
2362N/A of the Common Development and Distribution License
0N/A (the License). You may not use this file except in
2362N/A compliance with the License.
0N/A
0N/A You can obtain a copy of the License at
0N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
0N/A opensso/legal/CDDLv1.0.txt
0N/A See the License for the specific language governing
0N/A permission and limitations under the License.
0N/A
0N/A When distributing Covered Code, include this CDDL
0N/A Header Notice in each file and include the License file
0N/A at opensso/legal/CDDLv1.0.txt.
0N/A If applicable, add the following below the CDDL Header,
2362N/A with the fields enclosed by brackets [] replaced by
2362N/A your own identifying information:
2362N/A "Portions Copyrighted [year] [name of copyright owner]"
0N/A
0N/A $Id: index.html,v 1.4 2008/06/25 05:44:40 qcheng Exp $
0N/A
0N/A-->
0N/A
0N/A<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
0N/A<html>
0N/A<head>
0N/A <title>Please Wait While Redirecting to console</title>
0N/A
0N/A <script language="JavaScript"> <!--
0N/A
0N/A function redirectToConsole() {
0N/A var params = getQueryParameters();
0N/A var url = '/base/AMAdminFrame';
0N/A
0N/A if (params != '') {
0N/A url += params + '&amconsoleRedirect=1&' + getDateStamp();
0N/A } else {
0N/A url += '?&amconsoleRedirect=1&' + getDateStamp();
0N/A }
0N/A top.location.replace(url);
0N/A }
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>