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