ispusage 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1789 @@
1
+ HTTP/1.1 200 OK
2
+ Content-Type: text/html; charset=iso-8859-1
3
+
4
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/strict.dtd">
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+ <html>
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+ <head>
34
+ <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
35
+ <META HTTP-EQUIV="Expires" CONTENT="-1">
36
+ <script language="javascript">
37
+ //[R3.1 Code Merge BAU39: Jovy Gianan 13 Mar 2008 Start] - Merged task 10434
38
+ //[Reitz Web R3.1 <28 Feb 2008>: <jovy> Start] - <Fix BRT 90>
39
+ try {
40
+ //[Reitz Web R3.1 <28 Feb 2008>: <jovy> End] - <Fix BRT 90>
41
+ //[R3.1 Code Merge BAU39: Jovy Gianan 13 Mar 2008 End] - Merged task 10434
42
+ document.execCommand("BackgroundImageCache",false,true);
43
+ //[R3.1 Code Merge BAU39: Jovy Gianan 13 Mar 2008 Start] - Merged task 10434
44
+ //[Reitz Web R3.1 <28 Feb 2008>: <jovy> Start] - <Fix BRT 90>
45
+ } catch (e) {
46
+ //do nothing
47
+ }
48
+ //[Reitz Web R3.1 <28 Feb 2008>: <jovy> End] - <Fix BRT 90>
49
+ //[R3.1 Code Merge BAU39: Jovy Gianan 13 Mar 2008 End] - Merged task 10434
50
+ </script>
51
+ <!-- ReitzWeb R1 22 January 2007 JRR: START change relative url -->
52
+ <!--%
53
+ AppContext appCtx = AppContext.getAppContext(request);
54
+ String webAppName = appCtx.getWebAppName();
55
+ ResourceURL url = ResourceURL.createResourceURL(request, response);
56
+ %-->
57
+
58
+
59
+ <script type="text/javascript" src="/web/ShowBinary/SCSRepository/assets/javascript/globalnav_image_funcs.js"></script>
60
+
61
+
62
+
63
+
64
+ <script type="text/javascript" src="/web/ShowBinary/SCSRepository/assets/javascript/block.js"></script>
65
+
66
+ <script type="text/javascript" src="/web/ShowBinary/SCSRepository/assets/javascript/rollover.js"></script>
67
+
68
+
69
+
70
+
71
+ <script type="text/javascript" src="/web/ShowBinary/SCSRepository/assets/javascript/core.js"></script>
72
+
73
+
74
+
75
+
76
+
77
+ <link href="/web/ShowBinary/SCSRepository/assets/css/service_centre.css" rel="stylesheet" type="text/css"/>
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+ <!-- ReitzWeb R1 22 January 2007 JRR: START change relative url -->
126
+
127
+ <title>Optus - Personal</title>
128
+
129
+ <script language='JavaScript' type='text/JavaScript'>
130
+ var channelPath = "homepage-personal";
131
+ </script>
132
+
133
+
134
+
135
+ <script type="text/javascript" src="/web/framework/skins/OSC/js/CAMCommon.js"></script>
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+ </head>
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
+
164
+
165
+
166
+ <body class="myaccount">
167
+
168
+
169
+
170
+ <div id="shell-L1">
171
+ <div id="shell-L2">
172
+
173
+
174
+
175
+
176
+
177
+
178
+
179
+
180
+
181
+
182
+
183
+
184
+
185
+
186
+
187
+
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+
211
+
212
+
213
+
214
+ <script language="JavaScript">
215
+
216
+ function ReadCookie(cookieName) {
217
+ var theCookie=""+document.cookie;
218
+ var ind=theCookie.indexOf(cookieName);
219
+ if (ind==-1 || cookieName=="") return "";
220
+ var ind1=theCookie.indexOf(';',ind);
221
+ if (ind1==-1) ind1=theCookie.length;
222
+ return unescape(theCookie.substring(ind+cookieName.length+1,ind1));
223
+ }
224
+
225
+ function SetCookie(cookieName,cookieValue,nDays) {
226
+ var today = new Date();
227
+ var expire = new Date();
228
+ if (nDays==null || nDays==0) nDays=1;
229
+ expire.setTime(today.getTime() + 3600000*24*nDays);
230
+ document.cookie = cookieName+"="+escape(cookieValue)
231
+ + ";expires="+expire.toGMTString();
232
+ }
233
+
234
+ function areCookiesEnabled(){
235
+ testValue=Math.floor(1000*Math.random());
236
+ SetCookie('AreCookiesEnabled',testValue);
237
+ return (testValue==ReadCookie('AreCookiesEnabled'));
238
+
239
+ }
240
+ </script>
241
+
242
+
243
+
244
+ <form action="/web/ocaportal.portal?_nfpb=true&_pageLabel=ocaportal_book_checkCookies" name="cookiesDisabled" method="POST">
245
+
246
+ </form>
247
+
248
+
249
+ <script language="JavaScript">
250
+ var cookiesEnabled = areCookiesEnabled();
251
+ if(!cookiesEnabled){
252
+ document.cookiesDisabled.submit();
253
+ }
254
+
255
+ </script>
256
+
257
+
258
+
259
+
260
+
261
+
262
+
263
+
264
+
265
+ <!-- globalnav -->
266
+ <div id="global-header">
267
+ <div id="logo">
268
+ <a href="http://www.optus.com.au/"><img
269
+ height="43" alt="Go to Optus homepage" title="Go to Optus homepage" hspace="0" src="/web/ShowBinary/SCSRepository/assets/images/logos/optus_logo.gif"
270
+ width="74" border="0"></a></div>
271
+ <div class="global-menu">
272
+ <div id="dropdown-outer">
273
+ <div id="dropdown-business">
274
+ <script type="text/javascript">/*<!--*/document.getElementById('dropdown-business').className='ina';/*-->*/</script>
275
+ <div class="dropdown-inner" onmouseover='switchSource("global_nav_business");t("dropdown-business")' onmouseout='switchSource("global_nav_business");t("dropdown-business")'><a href="http://www.optus.com.au/business">Business</a><a href="/web/ocaportal.portal?_nfpb=true&amp;_pageLabel=Template_Main&amp;FP=/smallbusiness&amp;site=smallbusiness">Small &amp; Medium Business</a><a href="http://www.optus.com.au/wholesale">Wholesale</a></div>
276
+ </div>
277
+ </div>
278
+ <a id="home" onmouseover='switchSource("global_nav_home")' onmouseout='switchSource("global_nav_home")' href="http://www.optus.com.au/" name="home"><img id="global_nav_home" alt="Homepage" src="/web/ShowBinary/SCSRepository/assets/images/navigation/global/home.gif" name="global_nav_home" border="0" height="48" width="67"></a><a id="personal" onmouseover='switchSource("global_nav_personal")' onmouseout='switchSource("global_nav_personal")' href="/web/ocaportal.portal?_nfpb=true&amp;_pageLabel=Template_Main&amp;FP=/personal&amp;site=personal" name="personal"><img id="global_nav_personal" alt="Personal" src="/web/ShowBinary/SCSRepository/assets/images/navigation/global/personal.gif" name="global_nav_personal" border="0" height="48" width="65"></a><a id="business" onmouseover='switchSource("global_nav_business");t("dropdown-business")' onmouseout='switchSource("global_nav_business");t("dropdown-business")' name="business"><img id="global_nav_business" alt="Business" src="/web/ShowBinary/SCSRepository/assets/images/navigation/global/business.gif" name="global_nav_business" border="0" height="48" width="60"></a><a id="aboutoptus" onmouseover='switchSource("global_nav_about")' onmouseout='switchSource("global_nav_about")' href="http://www.optus.com.au/aboutoptus" name="aboutoptus"><img id="global_nav_about" alt="About Optus" src="/web/ShowBinary/SCSRepository/assets/images/navigation/global/about.gif" name="global_nav_about" border="0" height="48" width="82"></a><a id="help" onmouseover='switchSource("global_nav_help")' onmouseout='switchSource("global_nav_help")' href="http://www.optus.com.au/portal/site/aboutoptus/menuitem.26a56e3a0149a03327b868108c8ac7a0/?vgnextoid=e2bf3dd4813b1010VgnVCM100000c8a87c0aRCRD" name="help"><img id="global_nav_help" alt="Help" src="/web/ShowBinary/SCSRepository/assets/images/navigation/global/help.gif" name="global_nav_help" border="0" height="48" width="38"></a></div>
279
+ <script type="text/javascript">/*<![CDATA[*/setGlobalNavLinksImage(channelPath);/*]]>*/</script>
280
+ <div class="globalnav-forms">
281
+ <table cellspacing="0" cellpadding="0" border="0">
282
+ <tbody>
283
+ <tr valign="middle">
284
+ <td>
285
+ <input id="QueryText" type="text" onblur="validate=false;isFunction=false;submitterName=null;if(this.value=='') this.value='Search...'" onfocus="validate=true;isFunction=true;submitterName='searchSubmit()';if(this.value==this.defaultValue)this.value=''" value="Search..." name="QueryText" />
286
+ </td>
287
+ <td>
288
+ <img class="go" height="17" alt="Start your search" hspace="0" src="/web/ShowBinary/SCSRepository/assets/images/homepage/go_btn_yellow_trans.gif" width="24" border="0" onclick="searchSubmit()"/>
289
+ </td>
290
+ </tr>
291
+ </tbody>
292
+ </table>
293
+ </div>
294
+ <div class="globalnav-forms">
295
+ <table cellspacing="0" cellpadding="0" border="0">
296
+ <tbody>
297
+ <tr valign="center">
298
+ <td>
299
+ <form name="quicklinks" id="quicklinks">
300
+ <select id="qlinks-select" name="list1">
301
+ <option selected="selected">
302
+ Quicklinks:
303
+ </option>
304
+ <optgroup label="Accounts &amp; Billing">
305
+ <option value=
306
+ "https://secure.optus.com.au/smartpay/index.jsp">
307
+ Pay My Bill
308
+ </option>
309
+ <option value="/web/ocaportal.portal?_nfpb=true&amp;_pageLabel=Template_wRHS&amp;FP=/personal/customerhelp/accountsandbillinghelp/understandingmybill&amp;site=personal">
310
+ Understand My Bill
311
+ </option>
312
+ <option value="/web/ocaportal.portal?_nfpb=true&amp;_pageLabel=Template_woRHS&amp;FP=/personal/customerhelp/accountsandbillinghelp/setupdirectdebit&amp;site=personal">
313
+ Setup Direct Debit
314
+ </option>
315
+ </optgroup>
316
+ <optgroup label="Buy Online">
317
+ <option value="/web/ocaportal.portal?_nfpb=true&_pageLabel=Template_wRHS&FP=/personal/mobile/mobilephones&site=personal">
318
+ Buy a Mobile Online
319
+ </option>
320
+ <option value="http://www.optus.builtforbusiness.com.au/">
321
+ Small &amp; Medium Business
322
+ </option>
323
+ </optgroup>
324
+ <optgroup label="Contact Optus">
325
+ <option value="https://www.optus.com.au/portal/site/aboutoptus/menuitem.fb18e25a40b7ea23a76c69108c8ac7a0/?vgnextoid=05433dd4813b1010VgnVCM100000c8a87c0aRCRD">
326
+ Store Locator
327
+ </option>
328
+ <option value="/portal/site/aboutoptus/menuitem.fb18e25a40b7ea23a76c69108c8ac7a0/?vgnextoid=b7af3dd4813b1010VgnVCM100000c8a87c0aRCRD">
329
+ Contact Us
330
+ </option>
331
+ </optgroup>
332
+ <optgroup label="Login to:">
333
+ <option value="https://my.optus.com.au/signon/Optus/login_ext.sec?TYPE=33554433&amp;REALMOID=06-9dba8351-8a2f-48fd-9995-2d63a30bc29e&amp;GUID=NO&amp;SMAUTHREASON=0&amp;METHOD=GET&amp;SMAGENTNAME=0n0omHCH6DMpz8QnRsjCq8YxEWbU11o1xeSrPNUNByiyFiFKaXTXH9xLLsE8wbLd&amp;TARGET=-SM-HTTPS://my.optus.com.au/web/oscportal.portal%3fsite%3dpersonal">
334
+ My Account
335
+ </option>
336
+ <option value="http://www.optuszoo.com.au/cocoon/myAccount/AccountsAndBalances.xml?">
337
+ Pre-Paid Mobile Account
338
+ </option>
339
+ <option value="https://optusbusiness.com.au/00/07/00/000700.asp">
340
+ Thumbprint
341
+ </option>
342
+ <option value="http://www.optuszoo.com.au/mobile">
343
+ Optus Zoo
344
+ </option>
345
+ <option value="https://www.optus.com.au/portal/site/wholesale/menuitem.6ba14ff94e0c6c66d0b61a108c8ac7a0/?vgnextoid=49d28e59168b5010VgnVCM10000029867c0aRCRD">
346
+ Wholesale Extranet
347
+ </option>
348
+ </optgroup>
349
+ <optgroup label="Self Service">
350
+ <option value="/web/ocaportal.portal?_nfpb=true&amp;_pageLabel=Template_wRHS&amp;FP=/personal/customerhelp/accountsandbillinghelp/movinghousechangemydetails&amp;site=personal">
351
+ Moving House?
352
+ </option>
353
+ <option value="/web/ocaportal.portal?_nfpb=true&amp;_pageLabel=Template_woRHS&amp;FP=/personal/mobile/prepaidmobile/activateprepaidonline&amp;site=personal">
354
+ Activate PrePaid Mobile
355
+ </option>
356
+ <option value="/web/ocaportal.portal?_nfpb=true&amp;_pageLabel=Template_woRHS&amp;FP=/personal/mobile/usingyourmobileoverseas&amp;site=personal">
357
+ Using Mobile Overseas
358
+ </option>
359
+ <option value="/web/ocaportal.portal?_nfpb=true&amp;_pageLabel=Template_woRHS&amp;FP=/personal/customerhelp/producthelp/mobilehelp/troubleshootingmobile/unlockmyphonepuk&amp;site=personal">
360
+ Unlock your Mobile (PUK)
361
+ </option>
362
+ <option value="/web/ocaportal.portal?_nfpb=true&amp;_pageLabel=Template_woRHS&amp;FP=/personal/customerhelp/producthelp/mobilehelp/lostorstolenmobile&amp;site=personal">
363
+ Lost or Stolen Mobile
364
+ </option>
365
+ <option value="http://www.optus.com.au/portal/site/aboutoptus/menuitem.813c6f701cee5a14f0419f108c8ac7a0/?vgnextoid=758254e858697010VgnVCM10000029867c0aRCRD&amp;vgnextchannel=0aa730ece1197010VgnVCM10000029867c0aRCRD&amp;vgnextfmt=default">
366
+ Mobile Coverage Maps
367
+ </option>
368
+ </optgroup>
369
+ <optgroup label="Customer Help">
370
+ <option value="/web/ocaportal.portal?_nfpb=true&amp;_pageLabel=Template_wRHS&amp;FP=/personal/customerhelp&amp;site=personal">
371
+ Personal Customers
372
+ </option>
373
+ <option value="/web/ocaportal.portal?_nfpb=true&amp;_pageLabel=Template_wRHS&amp;FP=/smallbusiness/customerhelp&amp;site=smallbusiness">
374
+ Small &amp; Medium Businesses
375
+ </option>
376
+ <option value="http://www.optusbusiness.com.au/00/04/0004.asp">
377
+ Business Customers
378
+ </option>
379
+ </optgroup>
380
+ <optgroup label="Other Optus Sites">
381
+ <option value="http://www.optuszoo.com.au/">
382
+ myZoo
383
+ </option>
384
+ <option value="http://www.optuszoo.com.au/mobile">
385
+ OptusZoo Mobile
386
+ </option>
387
+ <option value="http://www.optus.builtforbusiness.com.au/">
388
+ Built for Business
389
+ </option>
390
+ </optgroup>
391
+ </select>
392
+ </form>
393
+ </td>
394
+ <td>
395
+ <img class="go"
396
+ onclick="redirect(document.quicklinks.list1.options[document.quicklinks.list1.selectedIndex].value)"
397
+ height="17" alt="Go to your chosen link" hspace="0"
398
+ src="/web/ShowBinary/SCSRepository/assets/images/homepage/go_btn_yellow_trans.gif"
399
+ width="24" border="0">
400
+ </td>
401
+ </tr>
402
+ </tbody>
403
+ </table>
404
+ </div>
405
+ </div>
406
+
407
+
408
+
409
+
410
+
411
+
412
+
413
+
414
+
415
+
416
+
417
+
418
+
419
+
420
+
421
+
422
+
423
+
424
+
425
+
426
+
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+
435
+
436
+
437
+
438
+
439
+
440
+
441
+
442
+
443
+
444
+
445
+
446
+
447
+
448
+
449
+
450
+
451
+
452
+
453
+
454
+
455
+
456
+
457
+
458
+
459
+
460
+
461
+
462
+
463
+
464
+
465
+
466
+
467
+
468
+
469
+
470
+
471
+
472
+
473
+
474
+
475
+
476
+
477
+ <!-- Section Header DCTM -->
478
+
479
+
480
+ <div id="section-header">
481
+ <div id="section-header-inner">
482
+ <div id="section-title">
483
+ <a href="/web/ocaportal.portal?_nfpb=true&_pageLabel=Template_Main&FP=/personal"><img src="/web/ShowBinary/SCSRepository/assets/images/navigation/primaryNav/personal/segment_header_Personal.gif" border="0" alt="personal"/></a>
484
+ </div>
485
+ <div id="prime-menu">
486
+ <div id="prime-menu-inner">
487
+ <a id="shoppingcart" style="BACKGROUND-IMAGE: none" href="/web/ocaportal.portal?_nfpb=true&_pageLabel=shoppingcart&FP=/personal/shoppingcart&LHP=/personal&site=personal">
488
+ <img src="/web/ShowBinary/SCSRepository/assets/images/navigation/sharedNav/view_cart.gif" border="0" alt="View Cart"/><img src="/web/ShowBinary/SCSRepository/assets/images/globalIcons/icon_viewcart.gif" border="0" alt="View Cart"/>
489
+ </a>
490
+ <a id="myoptus" href="/web/oscportal.portal?site=personal">
491
+ <img src="/web/ShowBinary/SCSRepository/assets/images/navigation/primaryNav/personal/PN_MyAccount.gif" border="0" alt="My Account"/>
492
+ </a>
493
+ <a id="customerhelp"href="/web/ocaportal.portal?_nfpb=true&_pageLabel=Template_wRHS&FP=/personal/customerhelp&site=personal"><img src="/web/ShowBinary/SCSRepository/assets/images/navigation/primaryNav/personal/PN_CustomerHelp.gif" border="0" alt="customerhelp"/></a>
494
+ <a id="asadvertised"href="/web/ocaportal.portal?_nfpb=true&_pageLabel=Template_woRHS&FP=/personal/asadvertised&site=personal"><img src="/web/ShowBinary/SCSRepository/assets/images/navigation/primaryNav/personal/as_advertised.gif" border="0" alt="asadvertised"/></a>
495
+ <a id="bundles"href="/web/ocaportal.portal?_nfpb=true&_pageLabel=Template_wRHS&FP=/personal/bundles&site=personal"><img src="/web/ShowBinary/SCSRepository/assets/images/navigation/primaryNav/personal/PN_Bundles.gif" border="0" alt="bundles"/></a>
496
+ <a id="tv"href="/web/ocaportal.portal?_nfpb=true&_pageLabel=Template_wRHS&FP=/personal/tv&site=personal"><img src="/web/ShowBinary/SCSRepository/assets/images/navigation/primaryNav/personal/tv.gif" border="0" alt="tv"/></a>
497
+ <a id="internet"href="/web/ocaportal.portal?_nfpb=true&_pageLabel=Template_wRHS&FP=/personal/internet&site=personal"><img src="/web/ShowBinary/SCSRepository/assets/images/navigation/primaryNav/personal/internet.gif" border="0" alt="internet"/></a>
498
+ <a id="homephone"href="/web/ocaportal.portal?_nfpb=true&_pageLabel=Template_wRHS&FP=/personal/homephone&site=personal"><img src="/web/ShowBinary/SCSRepository/assets/images/navigation/primaryNav/personal/home_phone.gif" border="0" alt="homephone"/></a>
499
+ <a id="mobile"href="/web/ocaportal.portal?_nfpb=true&_pageLabel=Template_wRHS&FP=/personal/mobile&site=personal"><img src="/web/ShowBinary/SCSRepository/assets/images/navigation/primaryNav/personal/mobile.gif" border="0" alt="mobile"/></a>
500
+ </div>
501
+ </div>
502
+ </div>
503
+ </div>
504
+
505
+
506
+
507
+
508
+
509
+ <div id='float-tank'>
510
+ <div id='float-tank-inner'>
511
+
512
+
513
+
514
+
515
+ <div id='ln'>
516
+ <div id='secTitle'>
517
+
518
+ <!--%= book.getTitle()%-->
519
+
520
+ <a href="/web/oscportal.portal?_nfpb=true&_pageLabel=myaccount&site=personal&pageName=accountselection" style="padding: 0px 0px 0px 0px; color: black;" >
521
+
522
+ My Account
523
+
524
+ </a>
525
+
526
+
527
+ </div>
528
+ <div style="padding-left:1px;">
529
+ <a href="/web/oscportal.portal?_nfpb=true&_pageLabel=personalDetailsLanding&site=personal" class="Cbase" style="padding-left:19px;">
530
+
531
+
532
+ Personal Details
533
+
534
+ </a>
535
+
536
+ <div id='sprtr'><img height="1" src="/web/ShowBinary/SCSRepository/assets/images/s.gif" width="1"></div>
537
+
538
+
539
+ <a href="/web/oscportal.portal?_nfpb=true&_pageLabel=viewbills&site=personal" class="Cbase" style="padding-left:19px;">
540
+
541
+
542
+ My Bills
543
+
544
+ </a>
545
+
546
+ <div id='sprtr'><img height="1" src="/web/ShowBinary/SCSRepository/assets/images/s.gif" width="1"></div>
547
+
548
+
549
+ <a href="/web/oscportal.portal?_nfpb=true&_pageLabel=trackorders&site=personal" class="Cbase" style="padding-left:19px;">
550
+
551
+
552
+ My Orders
553
+
554
+ </a>
555
+
556
+ <div id='sprtr'><img height="1" src="/web/ShowBinary/SCSRepository/assets/images/s.gif" width="1"></div>
557
+
558
+
559
+ <a href="/web/oscportal.portal?_nfpb=true&_pageLabel=mobiletransfer&site=personal" class="Cbase" style="padding-left:19px;">
560
+
561
+
562
+ Change Mobile Service
563
+
564
+ </a>
565
+
566
+ <div id='sprtr'><img height="1" src="/web/ShowBinary/SCSRepository/assets/images/s.gif" width="1"></div>
567
+
568
+
569
+ <div id='secTitle'>
570
+ Services
571
+ </div>
572
+ <a href="/web/oscportal.portal?_nfpb=true&_pageLabel=postpaidMobileLanding&site=personal" class="Cbase" style="padding-left:19px;">
573
+
574
+
575
+ Post-Paid Mobile
576
+
577
+ </a>
578
+
579
+ <div id='sprtr'><img height="1" src="/web/ShowBinary/SCSRepository/assets/images/s.gif" width="1"></div>
580
+
581
+
582
+ </div>
583
+ </div>
584
+
585
+
586
+
587
+ <script language="JavaScript">
588
+ primaryNavSelector("myoptus");
589
+ </script>
590
+
591
+
592
+
593
+
594
+
595
+
596
+
597
+
598
+
599
+
600
+
601
+
602
+
603
+
604
+
605
+
606
+
607
+
608
+
609
+
610
+
611
+
612
+
613
+
614
+
615
+
616
+
617
+
618
+
619
+
620
+
621
+
622
+
623
+
624
+
625
+
626
+
627
+
628
+
629
+
630
+
631
+
632
+
633
+
634
+
635
+
636
+
637
+
638
+
639
+
640
+
641
+ <div id='content'>
642
+
643
+
644
+
645
+
646
+
647
+
648
+
649
+
650
+
651
+
652
+
653
+
654
+
655
+
656
+
657
+
658
+
659
+
660
+
661
+
662
+
663
+ <div id='bread-crumb'>You are here: <a href="http://www.optus.com.au"> Homepage</a> / <a href="/web/ocaportal.portal?_nfpb=true&_pageLabel=Template_Main&FP=/personal&site=personal">Personal</a> / My Account</div>
664
+
665
+
666
+
667
+ <script type="text/javascript">
668
+
669
+ document.title='Optus - Personal - My Account'
670
+ </script>
671
+
672
+
673
+
674
+
675
+
676
+
677
+
678
+
679
+
680
+
681
+
682
+
683
+
684
+
685
+
686
+
687
+
688
+
689
+
690
+
691
+
692
+
693
+
694
+
695
+
696
+
697
+
698
+
699
+
700
+
701
+
702
+
703
+
704
+
705
+
706
+
707
+ <!-- ReitzWeb R1 22 January 2007 JRR: START change relative url -->
708
+
709
+ <!-- ReitzWeb R1 22 January 2007 JRR: END change relative url -->
710
+
711
+
712
+
713
+ <!--begin fixed defect #573-->
714
+ <div id ='logout' align="right">
715
+ <!--end fixed defect #573-->
716
+
717
+ Welcome Someone
718
+ <!-- ReitzWeb R1 22 January 2007 JRR: START change relative url -->
719
+ <!--netui:imageAnchor action="logout" src="/web/ShowBinary/SCSRepository/assets/images/formButtons/btn_log_out.gif" alt="log out" width="54" height="17" border="0" formSubmit="true"/-->
720
+ <a href="/web/oscportal.portal?_nfpb=true&portlet_3_1_actionOverride=%2Fportlets%2FLogin%2Flogout&_windowLabel=portlet_3_1&_pageLabel=myaccount"><!--Reitz Web R3.1 Leo:Aug 08 2007 - Start - Codemerge 4 R3.0 Task#6252 to R3.1 -->
721
+
722
+
723
+
724
+
725
+ <img src="/web/ShowBinary/SCSRepository/assets/images/formButtons/btn_log_out.gif" alt="Log out" border="0">
726
+
727
+
728
+ <!--Reitz Web R3.1 Leo:Aug 08 2007 - Start - Codemerge 4 R3.0 Task#6252 to R3.1 --></a>
729
+ <!-- ReitzWeb R1 22 January 2007 JRR: START change relative url -->
730
+ </div>
731
+
732
+
733
+
734
+
735
+
736
+
737
+
738
+
739
+
740
+
741
+
742
+
743
+ <script language="JavaScript">
744
+ if(is_nav && (navigator.vendorSub.substring(0,1) == "6")) {
745
+ document.write("<div>");
746
+ }
747
+ </script>
748
+
749
+
750
+
751
+
752
+
753
+ <div id='content-header'>
754
+
755
+
756
+ My Account
757
+
758
+ </div>
759
+
760
+
761
+
762
+
763
+
764
+ <div id='content-cont'>
765
+
766
+
767
+
768
+ <div id='content-main'>&nbsp;
769
+
770
+
771
+
772
+
773
+
774
+
775
+
776
+
777
+
778
+
779
+
780
+
781
+
782
+
783
+
784
+
785
+
786
+
787
+
788
+
789
+
790
+
791
+
792
+
793
+
794
+
795
+
796
+
797
+
798
+
799
+
800
+
801
+
802
+
803
+
804
+
805
+
806
+
807
+
808
+
809
+
810
+
811
+
812
+
813
+
814
+
815
+
816
+
817
+
818
+
819
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
820
+ >
821
+ <html lang="en">
822
+ <head>
823
+ <title>
824
+ Web Application Page
825
+ </title>
826
+ <!--meta http-equiv="refresh" content="3"-->
827
+
828
+ <script language="javascript">
829
+ <!--
830
+ var DisplayInterval = 2; //Number of seconds to wait before the next image is displayed
831
+ var TargetFrame = ""; //Name of the frame to open the hyperlink into
832
+
833
+ //Internal variables (do not change these unless you know what you are doing)
834
+ var IsValidBrowser = false;
835
+ var BannerAdCode = 0;
836
+ var BannerAdImages = new Array(NumberOfImages);
837
+ var DisplayInterval = DisplayInterval * 1000;
838
+ var NumberOfImages = 3;//ImageFileNames.length;
839
+
840
+ if (TargetFrame == '')
841
+ {
842
+ var FramesObject = null;
843
+ }
844
+ else
845
+ {
846
+ var FramesObject = eval('parent.' + TargetFrame);
847
+ }
848
+
849
+ //Function runs when this page has been loaded and does the following:
850
+ //1. Determine the browser name and version (since the script will only work on Netscape 3+ and Internet Explorer 4+).
851
+ //2. Start the timer object that will periodically change the image displayed by the Banner Ad.
852
+ //3. Preload the images used by the Banner Ad rotator script
853
+ function InitialiseBannerAdRotator(folder, names)
854
+ {
855
+
856
+ //alert (names);
857
+ var nameArray = names.split(",");
858
+ var ImageFileNames = new Array(nameArray.length);
859
+ var NumberOfImages = nameArray.length;
860
+
861
+ for(i=0;i<nameArray.length;i++)
862
+ {
863
+ ImageFileNames[i] = folder+nameArray[i];
864
+ //alert('joe='+ImageFileNames[i] );
865
+ }
866
+
867
+ //var ImageFileNames = new Array('arc568.jpg', 'D:/Misc/Pictures/Accenture/FY06-Q1(Commitee Event)/Door Gift/CK150-WE_t.jpg', 'D:/Misc/Pictures/Accenture/FY06-Q1(Commitee Event)/Door Gift/CK159-SL_t.gif');
868
+ //Determine the browser name and version
869
+ //The script will only work on Netscape 3+ and Internet Explorer 4+
870
+ var BrowserType = navigator.appName;
871
+ var BrowserVersion = parseInt(navigator.appVersion);
872
+
873
+ if (BrowserType == "Netscape" && (BrowserVersion >= 3))
874
+ {
875
+ IsValidBrowser = true;
876
+ }
877
+
878
+ if (BrowserType == "Microsoft Internet Explorer" && (BrowserVersion >= 4))
879
+ {
880
+ IsValidBrowser = true;
881
+ }
882
+
883
+ if (IsValidBrowser)
884
+ {
885
+ TimerObject = setTimeout("ChangeImage()", DisplayInterval);
886
+ BannerAdCode = 0;
887
+
888
+ for (i = 0; i < NumberOfImages; i++)
889
+ {
890
+ BannerAdImages[i] = new Image();
891
+ //BannerAdImages[i].src = ' ' + ImageFolder + ImageFileNames[i];
892
+ BannerAdImages[i].src = ' ' + ImageFileNames[i];
893
+ }
894
+ }
895
+ }
896
+
897
+ //Function to change the src of the Banner Ad image
898
+ function ChangeImage()
899
+ {
900
+
901
+ if (IsValidBrowser)
902
+ {
903
+ BannerAdCode = BannerAdCode + 1;
904
+
905
+ if (BannerAdCode == NumberOfImages)
906
+ {
907
+ BannerAdCode = 0;
908
+ }
909
+
910
+ window.document.bannerad.src = BannerAdImages[BannerAdCode].src;
911
+ TimerObject = setTimeout("ChangeImage()", DisplayInterval);
912
+ }
913
+ }
914
+
915
+ //Function to redirect the browser window/frame to a new location,
916
+ //depending on which image is currently being displayed by the Banner Ad.
917
+ //If Banner Ad is being displayed on an old browser then the DefaultURL is displayed
918
+ function ChangePage()
919
+ {
920
+ if (IsValidBrowser)
921
+ {
922
+ if (TargetFrame != '' && (FramesObject))
923
+ {
924
+ FramesObject.location.href = ImageURLs[BannerAdCode];
925
+ }
926
+ else
927
+ {
928
+ document.location = ImageURLs[BannerAdCode];
929
+ }
930
+
931
+ }
932
+ else if (!IsValidBrowser)
933
+ {
934
+ document.location = DefaultURL;
935
+ }
936
+ }
937
+
938
+
939
+
940
+
941
+ var thisContent = "";
942
+ var curIndex = 0;
943
+ var documentumArrayLength = 0;
944
+ var docContents;
945
+ var thisObject;
946
+ var interval = 30000;
947
+
948
+ var innerHtml = "";
949
+ var innerHtmls = "";
950
+
951
+ function changeContent(thisId)
952
+ {
953
+
954
+ if (document.getElementById(thisId) != null) {
955
+
956
+ thisObject = document.getElementById(thisId);
957
+ innerHtml = document.getElementById(thisId).innerHTML;
958
+
959
+ }
960
+
961
+
962
+
963
+ if (document.getElementById("hiddenContent").value != null &&
964
+ document.getElementById("hiddenContent").value != "")
965
+ {
966
+
967
+ if(innerHtml == ""){
968
+ innerHtml = document.getElementById("hiddenContent").value;
969
+ }else{
970
+ document.getElementById("hiddenContent").value = innerHtml;
971
+ }
972
+
973
+ }
974
+
975
+ if (innerHtml != "") {
976
+
977
+ innerHtmls = innerHtml.split("||");
978
+
979
+ }
980
+
981
+ docContents = new Array();
982
+
983
+
984
+
985
+
986
+ thisContent = "";
987
+
988
+ var j = 0;
989
+
990
+
991
+
992
+ for(i=0;i<innerHtmls.length;i++){
993
+
994
+ var docItem = innerHtmls[i];
995
+ docItem = docItem.replace(/^\s+|\s+$/g, '');
996
+
997
+ if (docItem != ""){
998
+
999
+ docContents[j] = docItem.replace("||","");
1000
+ thisContent = docContents[j];
1001
+ j++;
1002
+ }
1003
+
1004
+ }
1005
+
1006
+ documentumArrayLength = docContents.length;
1007
+
1008
+ animate();
1009
+ }
1010
+
1011
+
1012
+ function animate(){
1013
+ if(curIndex < documentumArrayLength){
1014
+ }else{
1015
+ curIndex = 0;
1016
+ }
1017
+
1018
+ if (docContents != null) {
1019
+
1020
+ thisContent = docContents[curIndex];
1021
+
1022
+ }
1023
+
1024
+ RenderChangeContent();
1025
+ curIndex++;
1026
+ }
1027
+
1028
+ function RenderChangeContent(){
1029
+
1030
+ /*
1031
+ thisObject.innerHTML = thisContent;
1032
+ TimerObject = setTimeout("animate()", interval);
1033
+ */
1034
+
1035
+ if (thisContent != null && thisContent != "") {
1036
+ thisObject.innerHTML = thisContent;
1037
+ TimerObject = setTimeout("animate()", interval);
1038
+ }
1039
+
1040
+ }
1041
+
1042
+
1043
+ -->
1044
+ </script>
1045
+ </head>
1046
+
1047
+ <body>
1048
+
1049
+ <div id="documentumContents">
1050
+
1051
+
1052
+
1053
+
1054
+
1055
+
1056
+ ||
1057
+
1058
+ <div id="AddContent">
1059
+ <a href="javascript:ChangePage()"><div class="content_banner_top" style=" width: 600px;">
1060
+ <a href="http://www.optusmusicstore.com.au/&cid=MyAccMusicStore" target="_blank"><img alt="All albums only $9.99 on the Optus Music Store" border="0" onclick="return oLinkClickHandler.apply(this, Array.prototype.slice.call(arguments))" src="/web/ShowBinary/SCSRepository/assets/images/myaccount/Optus_Music_Store_Promo_295x160_2.jpg" title="All albums only $9.99 on the Optus Music Store"></a>&nbsp; <a href="/web/oscportal.portal?_nfpb=true&_pageLabel=nontargetedrecontract&site=personal&make=SIM&model=BYO&cid=BYOMyAccount"><img alt="Bring your own handset to get extra value. Available on all 'yes' Cap BYO plans." border="0" onclick="return oLinkClickHandler.apply(this, Array.prototype.slice.call(arguments))" src="/web/ShowBinary/SCSRepository/assets/images/myaccount/BYO_MyAccount_banner_295x160.jpg" title="Bring your own handset to get extra value. Available on all 'yes' Cap BYO plans."></a>
1061
+ </div>
1062
+ <br>
1063
+ </a>
1064
+ </div>
1065
+
1066
+
1067
+
1068
+
1069
+
1070
+
1071
+ </div>
1072
+
1073
+
1074
+ <input type="hidden" id="hiddenContent"/>
1075
+ <script>changeContent('documentumContents')</script>
1076
+
1077
+
1078
+
1079
+
1080
+
1081
+ </body></html>
1082
+
1083
+
1084
+
1085
+
1086
+
1087
+
1088
+
1089
+
1090
+
1091
+
1092
+
1093
+
1094
+
1095
+
1096
+
1097
+
1098
+
1099
+
1100
+
1101
+
1102
+
1103
+
1104
+
1105
+
1106
+
1107
+
1108
+
1109
+
1110
+
1111
+
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+
1118
+
1119
+
1120
+
1121
+
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+
1130
+
1131
+
1132
+
1133
+
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+ <script type="text/javascript" src="/web/ShowBinary/SCSRepository/assets/javascript/sc_ajaxPortletQuerier.js"></script>
1140
+
1141
+
1142
+
1143
+
1144
+
1145
+
1146
+
1147
+
1148
+
1149
+
1150
+
1151
+
1152
+
1153
+
1154
+
1155
+
1156
+
1157
+
1158
+ <div class="account flexibox_t1">
1159
+ <div class="account_header flexibox_t1_header">
1160
+ <h2 class="flexibox_t1_header_inner">
1161
+
1162
+ Account # 01234567890123
1163
+
1164
+
1165
+ </h2>
1166
+ </div>
1167
+ <div class="account_body clearfix flexibox_t1_body">
1168
+ <div class="clearfix flexibox_t1_body_inner">
1169
+
1170
+
1171
+ <div class="account_details flexibox_t2">
1172
+
1173
+ <div class="account_details_header flexibox_t2_header"><div class="flexibox_t2_header_inner">&nbsp;</div></div>
1174
+
1175
+
1176
+ <div class="account_details_body flexibox_t2_body">
1177
+ <div class="flexibox_t2_body_inner">
1178
+
1179
+
1180
+ <div class="account_owner_name"> Account Holder Name </div>
1181
+
1182
+ <div class="account_owner_address">
1183
+
1184
+ 59 James St, Box Hill Vic 3128
1185
+ </div>
1186
+ </div>
1187
+ </div>
1188
+
1189
+ <div class="account_details_footer flexibox_t2_footer"><div class="flexibox_t2_footer_inner">&nbsp;</div></div>
1190
+
1191
+ </div>
1192
+
1193
+
1194
+ <div class="account_services">
1195
+
1196
+ <h3><div class="account_services_header clearfix">
1197
+ <h3 class="account_services_header_title">
1198
+ <img alt="Services on this account" src="/web/ShowBinary/SCSRepository/assets/images/myaccount/header_Servicesonthisaccount.gif" title="Services on this account" border="0"></h3>
1199
+ <div class="account_services_header_quicklinks">Quicklinks:</div>
1200
+ </div>
1201
+ </h3>
1202
+
1203
+ <div class="flexibox_t2">
1204
+
1205
+ <div class="flexibox_t2_header"><div class="flexibox_t2_header_inner">&nbsp;</div></div>
1206
+
1207
+ <div class="flexibox_t2_body">
1208
+ <div class="flexibox_t2_body_inner">
1209
+
1210
+
1211
+
1212
+ <ol class="service_list">
1213
+
1214
+
1215
+
1216
+
1217
+ <li class="service_item first_service_item last_service_item mobile_product clearfix">
1218
+
1219
+
1220
+ <div class="service_details">
1221
+
1222
+ <h4 class="service_title">
1223
+ <img alt="." src="/web/ShowBinary/SCSRepository/assets/images/homepage/home_mobile.gif" border="0">&nbsp;Mobile</h4>
1224
+
1225
+
1226
+ <ol class="service_items">
1227
+
1228
+
1229
+
1230
+ <li>
1231
+ <div class="ajaxPortletQuerier" id="01234567890123:0123456789">
1232
+ <a href="javascript:void(0);">
1233
+
1234
+ 0123456789
1235
+ </a>
1236
+ </div>
1237
+ </li>
1238
+
1239
+
1240
+ </ol>
1241
+ </div>
1242
+
1243
+ <div class="service_actions clearfix hidden_if_js">
1244
+ <ul class="service_actions_list_1">
1245
+ <li>- <a href="/web/oscportal.portal?_nfpb=true&_pageLabel=billingoptions&site=personal">Billing
1246
+ Options</a>
1247
+ </li>
1248
+ <li>- <a href="/web/oscportal.portal?_nfpb=true&_pageLabel=myusage_postpaid">My
1249
+ Usage</a>
1250
+ </li>
1251
+ <li>- <a href="/web/oscportal.portal?_nfpb=true&_pageLabel=changerateplan">Change My
1252
+ Rate Plan</a>
1253
+ </li>
1254
+ <li>- <a href="/web/oscportal.portal?_nfpb=true&_pageLabel=postpaidMobileLanding">More...</a>
1255
+ </li>
1256
+ </ul>
1257
+ </div>
1258
+
1259
+ <div class="visible_if_js">
1260
+ <img alt="Left arrow" border="0" class="left_arrow_yellow" src="/web/ShowBinary/SCSRepository/assets/images/fragments/servicecentre/img_arrow_yellow_left.gif" style=" display: inline;" title="Left arrow">Please click on the number or service ID
1261
+ to the left to see what functions are available to you.</div>
1262
+
1263
+
1264
+ </li>
1265
+
1266
+
1267
+
1268
+
1269
+
1270
+
1271
+
1272
+
1273
+ </ol>
1274
+
1275
+
1276
+ </div>
1277
+ </div>
1278
+
1279
+ <div class="flexibox_t2_footer"><div class="flexibox_t2_footer_inner">&nbsp;</div></div>
1280
+
1281
+ </div>
1282
+ </div>
1283
+
1284
+
1285
+
1286
+
1287
+
1288
+ <div class="clearfix">
1289
+
1290
+
1291
+
1292
+
1293
+ <a class="btn_paymybill" href="/web/oscportal.portal?_nfpb=true&_pageLabel=viewbills&selectedAcctNum=01234567890123" >
1294
+
1295
+
1296
+
1297
+
1298
+ <img alt="My Bill" title="My Bill" src="/web/ShowBinary/SCSRepository/assets/images/formButtons/btn_MyBill.gif"/>
1299
+
1300
+
1301
+ </a>
1302
+
1303
+
1304
+
1305
+
1306
+
1307
+
1308
+
1309
+
1310
+
1311
+
1312
+
1313
+
1314
+ <p>
1315
+ <a href="/web/oscportal.portal?_nfpb=true&_pageLabel=billingoptions&site=personal">Please
1316
+ click here to switch to online bills</a>
1317
+ </p>
1318
+
1319
+
1320
+
1321
+
1322
+
1323
+
1324
+
1325
+
1326
+
1327
+
1328
+
1329
+ </div>
1330
+
1331
+
1332
+ </div>
1333
+ </div>
1334
+
1335
+
1336
+
1337
+
1338
+ <div class="account_footer flexibox_t1_footer"><div class="flexibox_t1_footer_inner">&nbsp;</div></div>
1339
+
1340
+ </div>
1341
+
1342
+
1343
+
1344
+
1345
+
1346
+
1347
+
1348
+
1349
+
1350
+
1351
+
1352
+
1353
+
1354
+
1355
+ <!-- START Nielsen//NetRatings SiteCensus V5.1 -->
1356
+ <!-- COPYRIGHT 2005 Nielsen//NetRatings -->
1357
+ <script language="JavaScript" type="text/javascript">
1358
+ <!--
1359
+ var _rsCI="optus";
1360
+ var _rsCG="homepage-customercentre-badashboard-registered-personal";
1361
+
1362
+ var _rsDT=0;
1363
+ var _rsDU=0;
1364
+ var _rsDO=0;
1365
+ var _rsX6=0;
1366
+ var _rsSI=escape(window.location);
1367
+ var _rsLP=location.protocol.indexOf('https')>-1?'https:':'http:';
1368
+ var _rsRP=escape(document.referrer);
1369
+ var _rsND=_rsLP+'//secure-au.imrworldwide.com/';
1370
+
1371
+ if (parseInt(navigator.appVersion)>=4)
1372
+ {
1373
+ var _rsRD=(new Date()).getTime();
1374
+ var _rsSE=0;
1375
+ var _rsSV="";
1376
+ var _rsSM=0;
1377
+
1378
+ _rsCL='<scr'+'ipt language="JavaScript" type="text/javascript" src="'+_rsND+'v51.js"><\/scr'+'ipt>';
1379
+ }
1380
+ else
1381
+ {
1382
+ _rsCL='<img src="'+_rsND+'cgi-bin/m?ci='+_rsCI+'&cg='+_rsCG+'&si='+_rsSI+'&rp='+_rsRP+'">';
1383
+ }
1384
+ document.write(_rsCL);
1385
+ //-->
1386
+ </script>
1387
+ <noscript>
1388
+ <img src="//secure-au.imrworldwide.com/cgi-bin/m?ci=optus&amp;cg=homepage-customercentre-badashboard" alt="">
1389
+ </noscript>
1390
+ <!-- END Nielsen//NetRatings SiteCensus V5.1 -->
1391
+
1392
+
1393
+
1394
+
1395
+
1396
+
1397
+
1398
+
1399
+
1400
+
1401
+
1402
+
1403
+
1404
+
1405
+
1406
+
1407
+
1408
+
1409
+
1410
+
1411
+
1412
+
1413
+
1414
+
1415
+
1416
+ </div>
1417
+ </div>
1418
+ </div>
1419
+ <div id='control'>
1420
+
1421
+
1422
+
1423
+
1424
+
1425
+
1426
+
1427
+
1428
+
1429
+
1430
+
1431
+
1432
+
1433
+
1434
+
1435
+
1436
+
1437
+
1438
+
1439
+
1440
+
1441
+
1442
+
1443
+
1444
+
1445
+
1446
+
1447
+
1448
+
1449
+
1450
+
1451
+
1452
+
1453
+
1454
+
1455
+
1456
+
1457
+
1458
+
1459
+
1460
+
1461
+
1462
+
1463
+
1464
+
1465
+
1466
+
1467
+
1468
+
1469
+
1470
+
1471
+
1472
+
1473
+
1474
+
1475
+ <!-- Archna Keswani - 26 May 2008 - Business requirement to remove the 'Email this page' link - START -->
1476
+ <table width="100%" style="margin:0px;padding:0px">
1477
+ <tr>
1478
+ <td align="left">
1479
+ <!-- Archna Keswani - 26 May 2008 - Business requirement to remove the 'Email this page' link - END -->
1480
+
1481
+ <a href="javascript:printMe('/web/oscportal.portal;OCAJSESSIONID=LFtTHhMhc18PpQYvpvZbw2n3Bd2pVz62sMFy5PMv2KtGVryFg9VC!342043677!1267068302814?site=personal&print=true');" id='control-print'>Print this Page</a>
1482
+
1483
+ <!-- Archna Keswani - 26 May 2008 - Business requirement to remove the 'Email this page' link - START -->
1484
+ </td>
1485
+ <td>
1486
+ <div align="left">
1487
+ <!-- Archna Keswani - 26 May 2008 - Business requirement to remove the 'Email this page' link - END -->
1488
+
1489
+
1490
+
1491
+
1492
+
1493
+
1494
+
1495
+
1496
+
1497
+
1498
+
1499
+
1500
+
1501
+
1502
+
1503
+
1504
+ <!-- Archna Keswani - 26 May 2008 - Business requirement to remove the 'Email this page' link - START -->
1505
+
1506
+ <!-- Archna Keswani - 26 May 2008 - Business requirement to remove the 'Email this page' link - END -->
1507
+
1508
+
1509
+
1510
+
1511
+
1512
+ <a href="javascript:bookmarkThisPage();" title="Internet" id='control-bookmark'>Bookmark this Page</a>
1513
+
1514
+ <!-- Archna Keswani - 26 May 2008 - Business requirement to remove the 'Email this page' link - START -->
1515
+ </div>
1516
+ </td>
1517
+ </tr>
1518
+ </table>
1519
+ <!-- Archna Keswani - 26 May 2008 - Business requirement to remove the 'Email this page' link - END -->
1520
+
1521
+
1522
+
1523
+
1524
+
1525
+
1526
+
1527
+
1528
+
1529
+ <script language="JavaScript">
1530
+ function bookmarkThisPage() {
1531
+ if (is_nav && (navigator.vendorSub.substring(0,4)=="7.01" || navigator.vendorSub.substring(0,4)=="7.1" || navigator.vendorSub.substring(0,3)=="7.2")) {
1532
+ window.alert( 'Please click OK then press Ctrl+D to create a bookmark' );
1533
+ } else if( window.sidebar && window.sidebar.addPanel && !is_moz && (is_nav && is_minor > 7) ) {
1534
+ window.sidebar.addPanel( this.title, location.href, '' );
1535
+ } else if( window.external && ( navigator.platform == 'Win32' ||
1536
+ ( window.ScriptEngine && ScriptEngine().indexOf('InScript') + 1 ) ) &&!is_ff ) {
1537
+ window.external.AddFavorite( location.href, document.title );
1538
+
1539
+
1540
+
1541
+ } else if( window.opera && window.print ) {
1542
+ return true;
1543
+
1544
+ } else if(is_nav || is_moz || is_ff) {
1545
+
1546
+
1547
+
1548
+ window.alert( 'Please click OK then press Ctrl+D to create a bookmark' );
1549
+ } else {
1550
+ window.alert( 'Please use your browser\'s bookmarking facility to create a bookmark' );
1551
+ }
1552
+ }
1553
+
1554
+
1555
+ function printThisPage() {
1556
+ window.print();
1557
+ }
1558
+ </script>
1559
+
1560
+
1561
+
1562
+
1563
+ <script >
1564
+ function printMe(urlString)
1565
+ {
1566
+
1567
+ var params = getPrintWindowParams();
1568
+ var docprint=window.open(urlString,"",params);
1569
+
1570
+ }
1571
+ </script>
1572
+
1573
+
1574
+
1575
+
1576
+
1577
+
1578
+
1579
+
1580
+
1581
+
1582
+ </div>
1583
+
1584
+
1585
+
1586
+
1587
+
1588
+
1589
+
1590
+ <script language='JavaScript' type='text/JavaScript'>
1591
+ var _mydiv1 = document.getElementById("hideRHS");
1592
+
1593
+ _mydiv1.style.display="block";
1594
+
1595
+ </script>
1596
+
1597
+
1598
+
1599
+
1600
+
1601
+
1602
+
1603
+
1604
+
1605
+
1606
+
1607
+
1608
+
1609
+
1610
+
1611
+
1612
+
1613
+
1614
+
1615
+
1616
+
1617
+
1618
+
1619
+
1620
+
1621
+
1622
+
1623
+ </div>
1624
+ </div>
1625
+
1626
+
1627
+
1628
+
1629
+
1630
+
1631
+
1632
+
1633
+
1634
+
1635
+
1636
+
1637
+
1638
+
1639
+
1640
+
1641
+
1642
+
1643
+
1644
+
1645
+
1646
+
1647
+
1648
+
1649
+
1650
+
1651
+
1652
+
1653
+
1654
+
1655
+ <script>
1656
+ function anchor_submit_form(netuiName, newAction)
1657
+ {
1658
+ for (var i=0; i<document.forms.length; i++) {
1659
+ if (document.forms[i].id == netuiName) {
1660
+ document.forms[i].method = "POST";
1661
+ document.forms[i].action = newAction + "&producttype=null&fragCode=null&FP=null&productpath=null&site=personal&make=null&model=null&productType=null";
1662
+ document.forms[i].submit();
1663
+ }
1664
+ }
1665
+ }
1666
+
1667
+ function rewriteAction(form)
1668
+ {
1669
+ form.action = form.action + "&producttype=null&fragCode=null&FP=null&productpath=null&site=personal&make=null&model=null&productType=null";
1670
+ // [Start] - Seck Tien - 23 Apr 2007
1671
+ if ( (form.gCallingController != undefined) && (form.gCallingController.value != "") && (form.gCallingController.value == "PrepackagedBundleController") ) {
1672
+ form.action = form.action + "&gCallingController=" + form.gCallingController.value;
1673
+ }
1674
+ // [End] - Seck Tien - 23 Apr 2007
1675
+ return true;
1676
+ }
1677
+
1678
+ // [Start] - Nik = 23 Apr 2007
1679
+ function resetPageFlowState(_pageLabel)
1680
+ {
1681
+ var anchors = document.getElementsByTagName("a")
1682
+
1683
+ for(var i = 0; i < anchors.length; i++)
1684
+ {
1685
+ //reset the page flow state for the specified page label
1686
+ if(anchors[i].href.indexOf("_pageLabel=" + _pageLabel) != -1)
1687
+ {
1688
+ //href is not rewritten by the browser
1689
+ if(anchors[i].href.indexOf("#") == -1)
1690
+ {
1691
+ //href does not contain "&_nfls" or "?_nfls"
1692
+ if(anchors[i].href.indexOf("_nfls") == -1)
1693
+ {
1694
+ anchors[i].href += "&_nfls=false"
1695
+ }
1696
+ }
1697
+ }
1698
+ }
1699
+ }
1700
+ //reset the page flow state for "_pageLabel=prepackedBundle_ForNew"
1701
+ resetPageFlowState("prepackedBundle_ForNew")
1702
+ // [End] - Nik = 23 Apr 2007
1703
+ </script>
1704
+
1705
+
1706
+
1707
+
1708
+ <div class='clear'></div>
1709
+
1710
+
1711
+
1712
+
1713
+
1714
+
1715
+
1716
+
1717
+
1718
+ <div align="center">
1719
+ <div class='clear'></div>
1720
+ <div id="global_footer">
1721
+ <div id="global_footer_links">
1722
+ <a class="footer_contactus" href="http://www.optus.com.au/portal/site/aboutoptus/menuitem.fb18e25a40b7ea23a76c69108c8ac7a0/?vgnextoid=b7af3dd4813b1010VgnVCM100000c8a87c0aRCRD">Contact Us</a>
1723
+ <span class="footer_seperator">|</span>
1724
+ <a class="footer_accessibility" href="http://www.optus.com.au/portal/site/aboutoptus/menuitem.26a56e3a0149a03327b868108c8ac7a0/?vgnextoid=a72a17d85fbbc110VgnVCMServer29867c0aRCRD">Accessibility</a>
1725
+ <span class="footer_seperator">|</span>
1726
+ <a class="footer_copyright" href="http://www.optus.com.au/portal/site/aboutoptus/menuitem.cfa0247099a6f722d0b61a108c8ac7a0/?vgnextoid=5ee44f923c454010VgnVCM10000029a67c0aRCRD">Copyright</a>
1727
+ <span class="footer_seperator">|</span>
1728
+ <a class="footer_privacypolicy" href="http://www.optus.com.au/portal/site/aboutoptus/menuitem.813c6f701cee5a14f0419f108c8ac7a0/?vgnextoid=0aaba47491954010VgnVCM10000029a67c0aRCRD">Privacy Policy</a>
1729
+ <span class="footer_seperator">|</span>
1730
+ <a class="footer_standardagreement" href="http://www.optus.com.au/portal/site/aboutoptus/menuitem.cfa0247099a6f722d0b61a108c8ac7a0/?vgnextoid=76523dd4813b1010VgnVCM100000c8a87c0aRCRD">Standard Agreements</a>
1731
+ <span class="footer_seperator">|</span>
1732
+ <a class="footer_careers" href="http://www.optus.com.au/portal/site/aboutoptus/menuitem.ee0ee21ac9cce722d0b61a108c8ac7a0/?vgnextoid=6ebf3dd4813b1010VgnVCM100000c8a87c0aRCRD">Careers</a>
1733
+ <span class="footer_seperator">|</span>
1734
+ <a class="footer_sitemap" href="http://www.optus.com.au/portal/site/oca/menuitem.60d30349bd4607304aafa8108c8ac7a0/?vgnextoid=f7eeb6c96f745010VgnVCM100000c8a87c0aRCRD">Site Map</a>
1735
+ </div>
1736
+
1737
+ <div id="global_footer_logo">
1738
+
1739
+
1740
+ <a class="footer_entrust" target="_blank" ><span title="Digital Security by Entrust">Digital Security by Entrust</span></a>
1741
+ </div>
1742
+ </div>
1743
+ </div>
1744
+
1745
+
1746
+ <script type="text/javascript">/*<![CDATA[*/
1747
+ if((typeof endPageLoaded) === 'function') {
1748
+ endPageLoaded();
1749
+ }
1750
+ /*]]>*/
1751
+ </script>
1752
+
1753
+
1754
+
1755
+
1756
+
1757
+
1758
+
1759
+
1760
+
1761
+
1762
+
1763
+
1764
+
1765
+
1766
+
1767
+
1768
+ </div>
1769
+ </div></body>
1770
+
1771
+
1772
+
1773
+
1774
+
1775
+ </html>
1776
+
1777
+
1778
+
1779
+
1780
+
1781
+
1782
+
1783
+
1784
+
1785
+
1786
+
1787
+
1788
+
1789
+