//var comsg = "The interview detected that you previously created a customized task list. Click OK to load the task list you previously created, or click Cancel to create a new task list."; var cookieMess = "This interview uses a cookie to function. Ensure that you have are using a browser that supports cookies and that cookies are enabled."; //START NON-TRANSLATABLE 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("zzzz"); } function storeValue(input) { var exp = new Date(); var oneYearFromNow = exp.getTime() + (365 * 24 * 60 * 60 * 1000); exp.setTime(oneYearFromNow); document.cookie = "gosaveint=" + input + ";expires=" + exp.toGMTString(); } function onOld() { z = screen.height-100; windowparms = "width=640,height=" + z + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no,status=no"; //windowparms = "width=640,resizable=yes,scrollbars=yes,titlebar=no,toolbar=no,status=no"; aWindow = window.open("rzaiuchecklist.htm?noframes=true", "custom", windowparms); aWindow.focus(); if (aWindow != null) { if (aWindow.opener == null) { aWindow.opener = self; } } window.location = "rzaiusummary.htm"; } function onNew() { for (var i=0; i < 64; i++) { tstring = tstring + "x"; } storeValue(tstring); onNext(); } function onNext() { var tstring = "x"; for (var i=0; i < 63; i++) { tstring = tstring + "x"; } input = getCookieData("gosaveint"); if (input == "zzzz") { storeValue(tstring); inputA = getCookieData("gosaveint"); //load stored data if (inputA == "zzzz") { //cookie did not work, probably disabled alert(cookieMess); return; } } window.location = "rzaiuserver_name.htm"; } //END NON-TRANSLATABLE

Customizing your GO SAVE backup instructions

Welcome

This online interview uses JavaScript(TM) to function. Ensure you are using a browser that supports JavaScript and that JavaScript is enabled.

In this interview, you answer a series of questions about the type of GO SAVE operation you want to perform for your specific system configuration. These questions will help determine which tasks peeform to obtain a complete backup of your system using GO SAVE: Option 21, 22, or 23. Once you answer these questions, a customized checklist is provided with only the backup activities you need to perform.


You need to know specific information about how your system is configured, such as whether or not you use network servers. If you are not able to determine how your system is configured with the help provided in the interview, contact your system administrator. If your system configuration changes, you need to generate a new GO SAVE checklist to ensure you are performing a complete save.

var text1 = "The interview detected that you previously created a customized task list. You can load the task list you previously created or you can create a new task list. "; text1 += "If you create a new task list, your old task list will be overwritten.

<\/p>"; text1 += "

<\/center>"; var text2 = "

If you have enabled your Web browser to accept cookies, you can return to your custom GO SAVE backup instructions later. "; text2 += "Simply return to this page and choose to return to your previously created customized GO SAVE backup instructions.<\/p>

<\/p>"; text2 += "

<\/center>"; var text3 = "

If you have enabled your Web browser to accept cookies, you can return to your custom GO SAVE backup instructions later. "; text3 += "Simply return to this page and choose to return to your previously created customized GO SAVE backup instructions.<\/p>"; text3 += "

<\/p>

<\/center>"; //START NON-TRANSLATABLE var tstring = "x"; re = /\s*/; input = getCookieData("gosaveint"); //load stored data input2 = input.split(re); if (input != "zzzz") { if (input2[52] != "x") { document.writeln(text1); } else { document.writeln(text2); } } else { document.writeln(text3); } //END NON-TRANSLATABLE