index.html revision 4fe4e4f798a84a46e567f64ceadd3648eb0582d4
609N/A<!--
609N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
609N/A
609N/A Copyright (c) 2007 Sun Microsystems Inc. All Rights Reserved
609N/A
609N/A The contents of this file are subject to the terms
609N/A of the Common Development and Distribution License
609N/A (the License). You may not use this file except in
609N/A compliance with the License.
609N/A
609N/A You can obtain a copy of the License at
609N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
609N/A opensso/legal/CDDLv1.0.txt
609N/A See the License for the specific language governing
609N/A permission and limitations under the License.
609N/A
609N/A When distributing Covered Code, include this CDDL
609N/A Header Notice in each file and include the License file
609N/A at opensso/legal/CDDLv1.0.txt.
609N/A If applicable, add the following below the CDDL Header,
609N/A with the fields enclosed by brackets [] replaced by
609N/A your own identifying information:
609N/A "Portions Copyrighted [year] [name of copyright owner]"
609N/A
609N/A $Id: index.html,v 1.2 2008/06/25 05:48:51 qcheng Exp $
609N/A
609N/A-->
609N/A
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<title>Please Wait While Redirecting to Login page</title>
<script language="JavaScript"> <!--
function redirectToAuth() {
var params = getQueryParameters();
var url = 'UI/Login';
if (params != '') {
url += params;
}
top.location.replace(url);
}
function getQueryParameters() {
var loc = '' + location;
var idx = loc.indexOf('?');
if (idx != -1) {
return loc.substring(idx);
} else {
return '';
}
}
//-->
</script>
</head>
<body bgcolor="#FFFFFF" onLoad="redirectToAuth();">
</body>
</html>