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