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