125 lines
4.3 KiB
HTML
125 lines
4.3 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 4.0//EN">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>Additional policies</title>
|
|
<meta name="Copyright" content="Copyright (c) 2004 by IBM Corporation">
|
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
|
<!-- US Government Users Restricted Rights -->
|
|
<!-- Use, duplication or disclosure restricted by -->
|
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
|
|
|
<!--
|
|
----------------------------------------------------------------------------
|
|
START_DESCRIPTION
|
|
Page Function: Determines whether or not to start another policy
|
|
|
|
Stored Values:
|
|
(document.addmore.moreclients[0].checked)[true or false]
|
|
[policyDir] (parent.hidden.clientInfo[clientNum][11]) [inbound or outbound]
|
|
[policyType] (parent.hidden.clientInfo[clientNum][14]) [hybrid or integrated]
|
|
|
|
Next and Back:
|
|
[Next]: rzalladvqos2.htm if document.addmore.moreclients[0].checked = "true"
|
|
[Next]: rzalladvqos90.htm if document.addmore.moreclients[0].checked = "false"
|
|
[Back]: rzalladvqos40.htm if policyType = integrated & policyDir = outbound
|
|
[Back]: rzalladvqos66.htm if policyType = differentiated & policyDir = outbound
|
|
[Back]: rzalladvqos19.htm if policyDir = inbound
|
|
END_DESCRIPTION
|
|
----------------------------------------------------------------------------
|
|
-->
|
|
|
|
<LINK rel="stylesheet" type="text/css" href="../rzahg/ic.css">
|
|
<script language = "Javascript" src = "../rzahg/iccommon.js"></script>
|
|
<script language="Javascript" type="text/javascript">
|
|
|
|
//START NON-TRANSLATABLE
|
|
clientNum = parent.hidden.retClientNumber()
|
|
|
|
function onBack() {
|
|
|
|
//backURL = parent.hidden.noNonRSVP;
|
|
|
|
/* if ( backURL == false ) {
|
|
window.location = "rzalladvqos50.htm";
|
|
}
|
|
|
|
else {window.location = "rzalladvqos66.htm";} */
|
|
|
|
|
|
|
|
policyDir = parent.hidden.clientInfo[clientNum][11]
|
|
policyType = parent.hidden.clientInfo[clientNum][14]
|
|
|
|
if ( policyDir == "inbound" ) {window.location = "rzalladvqos19.htm"; }
|
|
else if ( policyDir == "outbound" && policyType == "integrated" ) {window.location = "rzalladvqos40.htm";}
|
|
else {window.location = "rzalladvqos66.htm";}
|
|
|
|
|
|
|
|
} //end onback
|
|
|
|
|
|
|
|
function onNext(form) {
|
|
//Save which button is selected in the applet
|
|
if ( document.addmore.moreclients[0].checked == true ) {
|
|
parent.hidden.clientNumber = clientNum + 1;
|
|
//reset path variables
|
|
var noNonRSVP = true;
|
|
var hasInboundCustom = false;
|
|
var hasOutboundDiffCustom = false;
|
|
|
|
window.location = "rzalladvqos2.htm";
|
|
}
|
|
else {
|
|
window.location = "rzalladvqos90.htm"
|
|
}
|
|
}
|
|
|
|
//Obtain name of HTML file in parent frame.
|
|
var parentDir = parent.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
|
|
var parentUrl = parent.window.location.href.substring(parentDir.length,parent.window.location.href.length+1);
|
|
if (parentUrl.indexOf("#") >= 0) { parentUrl = parentUrl.substring(0,parentUrl.indexOf("#"));}
|
|
|
|
function restoreValues() {
|
|
//Is the hidden frame already loaded with the correct html?
|
|
if (parentUrl != "rzalladvqoswelcome.htm") {
|
|
window.location = "rzalladvqoswelcome.htm"; //load advisor frameset
|
|
return;
|
|
} else {
|
|
//Obtain name of HTML file in hidden frame.
|
|
var hiddenDir = parent.hidden.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
|
|
var hiddenUrl = parent.hidden.window.location.href.substring(hiddenDir.length,parent.hidden.window.location.href.length+1);
|
|
if (hiddenUrl.indexOf("#") >= 0) { hiddenUrl = hiddenUrl.substring(0,hiddenUrl.indexOf("#"));}
|
|
if (hiddenUrl != "rzalladvqoshidden.htm") {
|
|
//Correct HTML not loaded, load it
|
|
parent.hidden.window.location = "rzalladvqoshidden.htm";
|
|
}
|
|
}
|
|
}
|
|
|
|
//END NON-TRANSLATABLE
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<BODY onload="restoreValues()">
|
|
<h2>QoS planning advisor: Add another policy</h2>
|
|
<P>Would you like to create additional policies?</P>
|
|
<form name="addmore">
|
|
<INPUT TYPE="radio" NAME="moreclients" id="moreclients1" VALUE="yes"><label for="moreclients1">Yes</label><br>
|
|
<INPUT TYPE="radio" NAME="moreclients" id="moreclients2" VALUE="no" CHECKED><label for="moreclients2">No</label><p></p>
|
|
<center><input name=submit type="button" value="<< Back " onClick="onBack()">
|
|
<input name=submit type="button" value=" Next >>" onClick="onNext(this.form)">
|
|
</center>
|
|
</form>
|
|
|
|
</BODY>
|
|
|
|
</html>
|
|
|