ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzahq_5.4.0.1/rzahqadvisor3.htm

135 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--Hardware type</title>
<script language="Javascript" type="text/javascript" src="rzahqadvcommon.js"></script>
<script type="text/javascript" language="Javascript">
<!-- // Hide script from older browsers
var noSelect = "Select the type of hardware where you will install a Windows server.";
//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[3])) {
if (parent.hidden.v1[3] == "iSCSI") document.form1.rad1[0].checked = true;
if (parent.hidden.v1[3] == "2689") document.form1.rad1[1].checked = true;
if (parent.hidden.v1[3] == "4812") document.form1.rad1[2].checked = true;
if (parent.hidden.v1[3] == "2892") document.form1.rad1[3].checked = true;
if (parent.hidden.v1[3] == "2890") document.form1.rad1[4].checked = true;
}
}
function onNext() {
//Save data
//parent.hidden.v1[0] = "4";
var hw_selected = false;
hwIndex = 0;
for (b = 0; b < document.form1.rad1.length; b++) {
if (document.form1.rad1[b].checked) {
hw_selected = true;
hwIndex = b;
}
}
if (hw_selected == false) {
alert(noSelect);
} else {
switch (hwIndex) {
case 0: //iSCSI
parent.hidden.v1[3] = "iSCSI";
break;
case 1: //2689
parent.hidden.v1[3] = "2689";
break;
case 2: //4812
parent.hidden.v1[3] = "4812";
break;
case 3: //2892
parent.hidden.v1[3] = "2892";
break;
case 4: //2890
parent.hidden.v1[3] = "2890";
break;
}
}
if (parent.hidden.v1[3] != "2689") //if not 2689
parent.hidden.v1[5] = ""; //default to full install
//Next page
if (parent.hidden.v1[3] == "iSCSI") {
window.location = "rzahqadvisor3a.htm";
} else {
window.location = "rzahqadvisor4.htm";
}
}
function onBack() {
window.location = "rzahqadvisor2.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>Hardware type</strong>
<form name="form1">
<p>On what type of hardware will you install a Windows server?</p>
<blockquote>
<input type="radio" name="rad1" id="iSCSI" checked> <label for="iSCSI">iSCSI Host Bus Adapter (iSCSI HBA)</label><br>
<input type="radio" name="rad1" id="2689"> <label for="2689">2689 Integrated xSeries Adapter (IXA)</label><br>
<input type="radio" name="rad1" id="4812"> <label for="4812">4812 Integrated xSeries Server (IXS)</label><br>
<input type="radio" name="rad1" id="2892"> <label for="2892">2892 Integrated xSeries Server (IXS)</label><br>
<input type="radio" name="rad1" id="2890"> <label for="2890">2890 Integrated xSeries Server (IXS)</label><br>
</blockquote>
<br>
<br>
<br>
<center>
<input type="button" value="&lt;&lt; Back" onClick="onBack()">
<input type="button" value="Next &gt;&gt;" onClick="onNext()">
</center>
</form>
</body>
</html>