132 lines
4.6 KiB
HTML
132 lines
4.6 KiB
HTML
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 4.0//EN">
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<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. -->
|
|||
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
|
|||
|
<title>Windows Server installation advisor--Client licenses</title>
|
|||
|
<script language="Javascript" type="text/javascript" src="rzahqadvcommon.js"></script>
|
|||
|
<script type="text/javascript" language="Javascript">
|
|||
|
<!-- // Hide script from older browsers
|
|||
|
|
|||
|
var errMess2 = "The client licenses must be an integer between 5 and 9999.";
|
|||
|
var errMess = "Enter the number of client licenses.";
|
|||
|
|
|||
|
//START NON-TRANSLATABLE
|
|||
|
//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 checkFrame() {
|
|||
|
//Is the hidden frame already loaded with the correct html?
|
|||
|
if (parentUrl != "rzahqadvisor1.htm") {
|
|||
|
window.location = "rzahqadvisor1.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 != "rzahqadvhidden.htm") {
|
|||
|
//Correct HTML not loaded, load it
|
|||
|
parent.hidden.window.location = "rzahqadvhidden.htm";
|
|||
|
} else { //already loaded
|
|||
|
getData();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function getData() {
|
|||
|
if (!isEmpty(parent.hidden.v1[46])) {
|
|||
|
if (parseInt(parent.hidden.v1[46]) == 2) {
|
|||
|
document.form1.rad[1].checked = true;
|
|||
|
if (!isEmpty(parent.hidden.v1[47])) {
|
|||
|
document.form1.numb.value = parent.hidden.v1[47];
|
|||
|
}
|
|||
|
} else {
|
|||
|
if (parseInt(parent.hidden.v1[46]) == 1) { document.form1.numb.value = ""; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function onNext() {
|
|||
|
//Save data
|
|||
|
if (document.form1.rad[0].checked == true) {
|
|||
|
parent.hidden.v1[46] = "1";
|
|||
|
parent.hidden.v1[47] = "";
|
|||
|
} else {
|
|||
|
//Check path name
|
|||
|
if (!isEmpty(document.form1.numb.value)) {
|
|||
|
if (isInteger(document.form1.numb.value)) {
|
|||
|
if (document.form1.numb.value < 5 || document.form1.numb.value > 9999) {
|
|||
|
alert(errMess2);
|
|||
|
document.form1.numb.focus();
|
|||
|
document.form1.numb.select();
|
|||
|
return;
|
|||
|
} else {
|
|||
|
parent.hidden.v1[46] = "2";
|
|||
|
parent.hidden.v1[47] = document.form1.numb.value;
|
|||
|
}
|
|||
|
} else {
|
|||
|
alert(errMess2);
|
|||
|
document.form1.numb.focus();
|
|||
|
document.form1.numb.select();
|
|||
|
return;
|
|||
|
}
|
|||
|
} else {
|
|||
|
alert(errMess);
|
|||
|
document.form1.numb.focus();
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
//Next page
|
|||
|
window.location = "rzahqadvisor21.htm";
|
|||
|
}
|
|||
|
|
|||
|
function onBack() {
|
|||
|
window.location = "rzahqadvisor19.htm";
|
|||
|
}
|
|||
|
|
|||
|
//END NON-TRANSLATABLE
|
|||
|
|
|||
|
////////// -->
|
|||
|
</script>
|
|||
|
<link rel="stylesheet" type="text/css" href="../rzahg/ic.css">
|
|||
|
</head>
|
|||
|
|
|||
|
<body onLoad="checkFrame()">
|
|||
|
<h2>Windows Server installation advisor</h2>
|
|||
|
<strong>Client licenses</strong>
|
|||
|
<form name="form1">
|
|||
|
<p>A client license can be purchased for each computer that accesses the server, or for the server itself. A client license that is purchased for a server allows a specific number of concurrent connections to the server. </p>
|
|||
|
<p>What type of client license do you have?</p>
|
|||
|
<blockquote>
|
|||
|
<table>
|
|||
|
<tr>
|
|||
|
<td><input type="radio" name="rad" value="one" id="one" checked></td>
|
|||
|
<td><label for="one">Each computer</label></td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><input type="radio" name="rad" value="two" id="two"></td>
|
|||
|
<td><label for="two">Server</label></td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td></td>
|
|||
|
<td><label for="numb">Number of client licenses (5 to 9999):</label> <input type="text" name="numb" size="6" maxlength="4" id="numb" onKeyPress="selectRadio(1)"><br>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
</table>
|
|||
|
</blockquote>
|
|||
|
<br><br>
|
|||
|
<center>
|
|||
|
<input type="button" value="<< Back" onClick="onBack()">
|
|||
|
<input type="button" value="Next >>" onClick="onNext()">
|
|||
|
</center>
|
|||
|
</form>
|
|||
|
</body>
|
|||
|
</html>
|