index.html revision 984ea967792540448d05fba2ac6fad5dadf91fd6
0N/A<!--
3854N/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
0N/A of the Common Development and Distribution License
0N/A (the License). You may not use this file except in
0N/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
2362N/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,
0N/A with the fields enclosed by brackets [] replaced by
0N/A your own identifying information:
0N/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>
4378N/A <title>Please Wait While Redirecting to console</title>
4378N/A
4378N/A <script language="JavaScript"> <!--
4378N/A
4378N/A function redirectToConsole() {
4378N/A var params = getQueryParameters();
4378N/A var url = '/base/AMAdminFrame';
4378N/A
4378N/A if (params != '') {
0N/A url += params + '&amconsoleRedirect=1&' + getDateStamp();
0N/A } else {
0N/A url += '?&amconsoleRedirect=1&' + getDateStamp();
0N/A }
3854N/A top.location.replace(url);
3854N/A }
3854N/A
0N/A function getDateStamp() {
0N/A var s='';
0N/A while (s.length < 80) {
0N/A t = (48 + Math.round(Math.random() * 74));
0N/A r = ((t<58) || ((t>64) && (t<91)) || ((t>96) && (t<123))) ?
0N/A String.fromCharCode(t) : '';
0N/A s += r;
0N/A }
0N/A return s;
0N/A }
0N/A
0N/A function getQueryParameters() {
0N/A var loc = '' + location;
0N/A var idx = loc.indexOf('?');
3854N/A if (idx != -1) {
0N/A return loc.substring(idx);
3854N/A } else {
3854N/A return '';
3854N/A }
0N/A }
0N/A //-->
0N/A </script>
0N/A</head>
0N/A
0N/A<body bgcolor="#FFFFFF" onLoad="redirectToConsole();">
0N/A</body>
0N/A</html>
0N/A