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