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