145 lines
4.2 KiB
HTML
145 lines
4.2 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
|
<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. -->
|
|
<title>Customized backup checklist: Network servers</title>
|
|
<LINK rel="stylesheet" type="text/css" href="../rzahg/ic.css">
|
|
<script type="text/javascript" language="Javascript">
|
|
<!-- //////////
|
|
|
|
var cookieMess = "This interview uses a cookie to function. Ensure you are using a browser that supports cookies and that cookies are enabled.";
|
|
var noSelect = "Select Yes or No and then click Next.";
|
|
|
|
|
|
//START NON-TRANSLATABLE
|
|
var noVal = "zzzz";
|
|
|
|
function getCookieData(label) {
|
|
var labelLen = label.length;
|
|
var cLen = document.cookie.length;
|
|
var i=0;
|
|
var cEnd;
|
|
while (i < cLen) {
|
|
var j = i + labelLen;
|
|
if (document.cookie.substring(i,j) == label) {
|
|
cEnd = document.cookie.indexOf(";",j);
|
|
if (cEnd == -1) {
|
|
cEnd = document.cookie.length;
|
|
}
|
|
return unescape(document.cookie.substring(j+1,cEnd));
|
|
}
|
|
i++
|
|
}
|
|
//if they reach this point, no cookie data was found
|
|
return(noVal);
|
|
}
|
|
|
|
function storeCookieData(storeValue) {
|
|
re = /\s*/;
|
|
var newStoreValue = "";
|
|
a = getCookieData("gosaveint");
|
|
if (a != storeValue) {
|
|
s2 = storeValue.split(re);
|
|
s2[52] = "x";
|
|
for (var i=0; i < s2.length; i++) {
|
|
newStoreValue = newStoreValue + s2[i];
|
|
}
|
|
storeValue = newStoreValue;
|
|
}
|
|
var exp = new Date();
|
|
var oneYearFromNow = exp.getTime() + (365 * 24 * 60 * 60 * 1000);
|
|
exp.setTime(oneYearFromNow);
|
|
document.cookie = "gosaveint=" + storeValue + ";expires=" + exp.toGMTString();
|
|
}
|
|
|
|
function loadValue() {
|
|
re = /\s*/;
|
|
a = getCookieData("gosaveint");
|
|
if (a == noVal) { //no data in cookie or cookie DNE
|
|
window.location = "rzaiubackup_welcome.htm";
|
|
} else {
|
|
a2 = a.split(re);
|
|
z = a2[8];
|
|
if (z == noVal) {
|
|
return;
|
|
} else {
|
|
if (z == 0) {
|
|
document.forma.network[0].checked = true;
|
|
} else {
|
|
if (z == 1) {
|
|
document.forma.network[1].checked = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
function onBack() {
|
|
window.location="rzaiuopticonnect.htm";
|
|
}
|
|
|
|
function onNext() {
|
|
|
|
re = /\s*/;
|
|
var cookiestring = "";
|
|
var nextPage = "rzaiuhmc.htm";
|
|
a = getCookieData("gosaveint");
|
|
if (a == noVal) {
|
|
alert(cookieMess);
|
|
return;
|
|
}
|
|
a2 = a.split(re);
|
|
if (document.forma.network[0].checked) {
|
|
a2[8] = 0;
|
|
} else {
|
|
if (document.forma.network[1].checked) {
|
|
a2[8] = 1;
|
|
} else {
|
|
alert(noSelect);
|
|
return;
|
|
}
|
|
}
|
|
for (var i=0; i < a2.length; i++) {
|
|
cookiestring = cookiestring + a2[i];
|
|
}
|
|
storeCookieData(cookiestring);
|
|
window.location = nextPage;
|
|
}
|
|
|
|
//END NON-TRANSLATABLE
|
|
//////////-->
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<BODY onload="loadValue()">
|
|
|
|
<H2>Customize your GO SAVE backup instructions</H2>
|
|
<noscript><p>This online interview uses JavaScript<SUP>(TM)</SUP> to function. Ensure you are using a browser that supports
|
|
JavaScript and that JavaScript is enabled.</p></noscript>
|
|
|
|
<p>Network servers enable you to run other operating systems on your iSeries server. Examples of network servers include running
|
|
Windows operating systems using iSeries Integration for Windows Server, or running Linux in a guest partition. </p>
|
|
<p>Do you use network servers?</p>
|
|
<form name="forma">
|
|
|
|
<p>
|
|
<INPUT TYPE="radio" NAME="network" VALUE="yep" id="yep" CHECKED><label for="yep"><strong>Yes</strong><br></label><br>
|
|
<INPUT TYPE="radio" NAME="network" VALUE="nope" id="nope"><label for="nope"><strong>No</strong></label><br>
|
|
</p>
|
|
|
|
<p> </p>
|
|
<CENTER>
|
|
<input name="Back" type="button" value=" << Back " onClick="onBack()">
|
|
<input name="Next" type="button" value=" Next >> " onClick="onNext()">
|
|
</CENTER>
|
|
</form>
|
|
</BODY>
|
|
</html>
|