Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Disabling Back 1

Status
Not open for further replies.

jl8789

MIS
May 22, 2003
293
US
Basically need a catch all method that will not allow the user to go back using the back button or any other method available to them in the browser for Internet Explorer.

Anytime they want to go back, I need to display a message alerting them that they cannot go back and that they should use the method that is provided to them. After clicking OK on this alert, the user should stay on the page they received it.

I am currently looking into this, and any help or snippets of code that may help me are GREATLY appreciated!!!

Thanks.
 
It's not possible to eliminate all the ways a user can go back.

Here is an imcomplete list of ways:[ol][li]Back button[/li]
[li]Backspace Button[/li]
[li]Alt + Left Arrow[/li]
[li]Alternate Mouse Button Click[/li][/ol]
There are a few more, as well.

*cLFlaVA
----------------------------
Lois: "Peter, you're drunk!"
Peter: "I'm not drunk, I'm just exhausted from stayin' up all night drinking!
 
Your answer is really simple.
"It can't be done"

Accepting the answer is a problem though.
Even my bank with all the millions behind it has a notice similar to "Please don't use the back browser method instead navigate using the options provided".

Since I don't want to submit payments twice or transfer funds twice I just follow the rules.
You should come up with a similar warning, trying to find ways of disabling the back navigation will only lead you to headaches, I guarantee it.
I've been there and I have suffered for all mortals....

if you still want to persue this option, good luck and post the asnwer back here.....:) :)

grtfercho çB^]\..
"Imagination is more important than Knowledge" A. Einstein
-----------------------------------------------
 
Must be a difficult function or group of functions then to be able to do it. I found a site that does not allow browser navigation. If I try to go back it pops up a message, and then disables all the ways a user can go back.

Interesting.
 
Closes you could probably come is to open the window using window.open(), disabling the toolbar.

Then, you'd have to have some JavaScript in there to capture keypress events, and if the keypress events match the backspace, alt+left, or any other "back" combination, you'd have to stop it.

You'd also have to have the right-click event of the mouse blocked, because "Back" is an option under that menu.

*cLFlaVA
----------------------------
Lois: "Peter, you're drunk!"
Peter: "I'm not drunk, I'm just exhausted from stayin' up all night drinking!
 
cool, I would like to see that site...
do you happen to have the address??

grtfercho çB^]\..
"Imagination is more important than Knowledge" A. Einstein
-----------------------------------------------
 
Yeah, I'd like to see this as well. Is it possibly CoolWebSearch.com or something?

*cLFlaVA
----------------------------
Lois: "Peter, you're drunk!"
Peter: "I'm not drunk, I'm just exhausted from stayin' up all night drinking!
 
Unfortunately it is my company's health site where we can make modifications to our health plan etc. I am going to try to find the developer of this site and ask him questions. If I can get the scripts etc, I will definitely post them.
 
When I have a form that a rude user could submit twice by navigating BACK, I usually make my first line of JavaScript on the form page:

Code:
window.history.forward(1);

If there is no forward history, nothing happens and the page finished loading correctly.

I'm sure you could modify this to display a message first if the forward-history exists (alert("Please follow the rules!")).

--Dave
 
On the site that seemingly doesn't allow the user to go back, it appears that all of the options are available to them to go back, button, right-click, menu, alt- F11, backspace etc. When the user uses one of these methods to go back, it traps that event, displays a window telling the user that they can't go back, and then it must set the page back to being the first one in history again. None of the options to go back are then available, and it appears you are on the first page again.
 
You can set cookies for current and previous page on each page, then if the location.href of a page is the previous page, you could use location.replace() to move them to the last page visited and delete the previous page's place in the history.

On each page, you'd get the URL and compare it to the previous page cookie. If they were different, then the "current page" cookie value would be put in the previous page cookie, and the URL of the page then would be stored in the current page cookie.

I like LookingForInfo's answer, too, and will probably use that one for form processing pages.

Lee
 
Here is all of the javascript on this page. Anyone want to strip it to get the results I need? I am going to start working on this tomorrow.

<html><HEAD><meta NAME="Spider-Directive" CONTENT="linkId=HM_ANN_ENRL;accessibility=ALWAYS" /><TITLE>Annual Enrollment</TITLE><SCRIPT LANGUAGE="JavaScript">
function getLoadTimestamp()
{
loadDate = new Date();
}
function updateLinkWithDates(tmpHref)
{
var href = tmpHref.href;
var indx1 = href.indexOf( "&lDt" );
if ( indx1 > -1 )
{
var indx2 = href.indexOf( "&", href.indexOf( "&fWdw" ) + 1 );
href = href.substring(0, indx1)
+ "&lDt=" + loadDate.getTime()
+ "&ulDt=" + (new Date()).getTime()
+ "&fn=" + fromNodeId
+ "&fWdw=" + fromWindow
+ ( ( indx2 > -1 )? href.substring( indx2, href.length - 1 ) : "" );
}
else
{
href = href
+ "&lDt=" + loadDate.getTime()
+ "&ulDt=" + (new Date()).getTime()
+ "&fn=" + fromNodeId
+ "&fWdw=" + fromWindow;
}
tmpHref.href = href;
}
function updateFormWithDates(formObject)
{
formObject.lDt.value = loadDate.getTime();
formObject.ulDt.value = (new Date()).getTime();
}

var loadDate = new Date(0);
var fromNodeId = "AnnEnrlPage";
var fromWindow = "YBRPrimary";
var isTranInProgress = "false";
var sessCreateTS = "1098304797548";


function ReplaceToken(target_str, token_val, string_val)
{
for (var i=0;i<target_str.length;i++)
{
if (target_str.substring(i,i+token_val.length) == token_val )
{
target_str = target_str.substring(0,i) + string_val + target_str.substring(i+token_val.length,target_str.length)
}
}
return target_str
}
function DisplayErrorMsg(obj, msg_text)
{
for (var i=2;i<DisplayErrorMsg.arguments.length;i++)
{
var token = '%'+""+(i-1)
msg_text = ReplaceToken(msg_text, token, DisplayErrorMsg.arguments)
}
alert(msg_text)
if (obj != 99)
{
document.forms.mainForm.elements[obj].focus()
document.forms.mainForm.elements[obj].select()
}
}

function LaunchSecondWindow(url, target, features, replaceHistory)
{
switch ( features )
{
case "0":
features = "toolbar=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes";
break;
case "1":
features = "width=340,height=283,resizable=no";
break;
case "2":
features = "width=340,height=422,resizable=no";
break;
case "3":
features = "width=610,height=422,scrollbars=yes";
break;
case "4":
features = "width=610,height=422,status=yes,scrollbars=yes,resizable=yes";
break;
case "5":
features = "width=610,height=422,toolbar=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes";
break;
case "6":
features = "toolbar=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=762,height=422";
break;
case "7": // SPECIAL FOR START_SEARCH PAGE: Browser attributes for search-results window
features = "toolbar=yes,status=yes,menubar=yes,scrollbars=no,resizable=yes,width=595,height=422";
break;
case "8": // SURVEY WINDOW: Browser attributes for Maritz survey window
features = "height=300,width=420,menubar=yes,locationbar=no,screenX=0,screenY=0,top=0,left=0";
break;
case "9": // Form Decision page window for MetLife/3rd party EOI form updates
features = "height=450,width=500,menubar=no,locationbar=no,scrollbars=no,resizable=yes,screenX=0,screenY=0,top=0,left=0";
break;
}
target = validateTarget(target);
if (replaceHistory == null)
{
if (features == null)
{
win = window.open(url, target);
}
else
{
win = window.open(url, target, features);
}
}
else
{
if (features == null)
{
win = window.open(url, target, null, replaceHistory);
}
else
{
win = window.open(url, target, features, replaceHistory);
}
}
win.focus();
return false;
}
function validateTarget( target )
{
if (window.name==target)
return target;
var currentWindowUniqueValue = window.sessCreateTS;
if ((currentWindowUniqueValue == null) || (currentWindowUniqueValue == "NA")){
return target;
}
var uniqueValueInCookie = getUniqueValueFromCookie();
if ((uniqueValueInCookie == null) || (uniqueValueInCookie == "NA")){
return target;
}
if (uniqueValueInCookie != currentWindowUniqueValue){
return window.name;
}
else{
return target;
}
}
function getUniqueValueFromCookie(){
var allcookies = document.cookie;
if (allcookies == null)
return "NA"
var pos = allcookies.indexOf("YBRSessTS");
if (pos != -1){
var start = pos+9;
var end = allcookies.indexOf(";", start);
if (end == -1)
end = allcookies.length;
var value = allcookies.substring(start, end);
value = unescape(value);
return value;
}
return "NA";
}

function confirmExit(isConfirmNeeded, message) {
if (isConfirmNeeded == true) {
return confirm(message)
}
}
function confirmExit2() {
return confirmExit(gExitConfirmValue, gExitConfirmText)
}
function confirmSearchSelection( link, target, transInterrupt )
{
target = validateTarget(target);
win=window.open(link, target);
win.focus();
return false
}

var gExitConfirmText = "WARNING:\n\nIf you leave this page now,\nyour entries will not be saved.\n\nSelect OK to leave the page, or\nselect Cancel to return to this page.";
var gExitConfirmValue = false;
var gLogoffConfirmText = "\nARE YOU SURE YOU WANT TO LOG OFF? \n\nSelect OK to log off the site.\n\n";

function confirmUnframed(isUnframedNeeded, umessage) {
if (isUnframedNeeded == true) {
return confirm(umessage)
}
}
function confirmExitUnframed() {
return confirmUnframed(gUnframedConfirmValue, gUnframedConfirmText)
}
var gUnframedConfirmText = "WARNING:\n\nYou're leaving this site. If you don't return to this site within 30 minutes,\nyou'll automatically be logged off.\n\nYour entries will not be saved upon automatic logoff.\n\nChoose OK to leave the site, or choose Cancel to return to the site.";
var gUnframedConfirmValue = true;

var showSurvey = true;
function setShowSurvey(bool)
{
showSurvey=bool;
}
function setSurveyCookie(surveyId)
{
var exp = new Date();
exp.setTime(exp.getTime() + (1000*24*60*60*1000));
document.cookie = surveyId
+ "=false; expires="
+ exp.toGMTString()
+ "; path=; domain=.hewitt.com";
}
function displayEditResponses()
{
}
</SCRIPT><link rel="stylesheet" href=" rel="stylesheet" href=" rel="stylesheet" href=" rel="stylesheet" href=" bgcolor="#FFFFFF" link="#000080" vlink="#000080" onload="getLoadTimestamp();displayEditResponses()" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><div><a href="#main"><img src=" width="0" height="0" border="0" alt="Skip to page content"></a></div><table border="0" cellspacing="0" cellpadding="0" width="760" style="margin-top: -1px;"><tr><td width="523" valign="bottom"><img src=" width="523" height="54" alt="Your Benefits Resources, a Hewitt eSolution"></td><td valign="bottom" width="234" align="right"><img src=" alt="SBC Communications Inc."></td></tr></table>
<table width="760" border="0" cellspacing="0" cellpadding="0"><tr><td class="headerrule" height="1"><spacer type="block" width="1" height="1"></spacer></td></tr></table>
<table width="760" border="0" cellspacing="0" cellpadding="0" height="100%"><tr><td class="navBkgd" rowspan="2" valign="top" align="center" width="168"><table width="146" border="0" cellspacing="0" cellpadding="1"><tr><td height="12"></td></tr><tr class="navBoxBrdr"><td><table width="144" border="0" cellspacing="0" cellpadding="0" class="navBoxFill"><tr><td width="12" class="navBoxBrdr">&nbsp;</td><td width="120" class="tocTitle">Topics</td><td width="12" class="navBoxBrdr">&nbsp;</td></tr><tr><td colspan="3" height="12"><spacer type="block" width="1" height="1"></spacer></td></tr><tr align="center"><td colspan="3"><table width="134" border="0" cellspacing="0" cellpadding="3" class="navOnBrdr"><tr><td><table width="100&#37;" border="0" cellspacing="0" cellpadding="4" class="navOnFill"><tr><td><p><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=AnnEnrlPage&u=1098304814650&llId=global&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return confirmExit2();" class="tocOn">Annual Enrollment</a></p></td></tr></table>
</td></tr></table>
</td></tr><tr><td colspan="3" height="12"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td width="12">&nbsp;</td><td width="120"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=HealthInsPage&llId=global&nodeId1=HealthInsPage&nodeId=HealthInsPage&u=1098304814651&wdw=YBRPrimary" onClick="updateLinkWithDates(this);return confirmExit2();" class="tocOff">Health, Insurance...</a></td><td width="12">&nbsp;</td></tr><tr><td colspan="3" height="12"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td width="12">&nbsp;</td><td width="120"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=PrsnPrflTab&llId=global&nodeId1=PrsnPrflTab&subTab=PrefdPage&nodeId=PrsnPrflTab&u=1098304814652&wdw=YBRPrimary" onClick="updateLinkWithDates(this);return confirmExit2();" class="tocOff">Your Profile</a></td><td width="12">&nbsp;</td></tr><tr><td colspan="3" height="12"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td width="12">&nbsp;</td><td width="120"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=LifeEvntsPage&llId=global&nodeId1=LifeEvntsPage&nodeId=LifeEvntsPage&u=1098304814652&wdw=YBRPrimary" onClick="updateLinkWithDates(this);return confirmExit2();" class="tocOff">Life Events</a></td><td width="12">&nbsp;</td></tr><tr><td colspan="3" height="12"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td width="12">&nbsp;</td><td width="120"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ContentPage1/Frames&u=1098304814653&wdw=YBRBenefitsManual&llId=globalBM01Over&pgnd=BM01OVER&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRBenefitsManual', '5');" class="tocOff">Benefits Manual</a></td><td width="12">&nbsp;</td></tr><tr><td colspan="3" height="12"><spacer type="block" width="1" height="1"></spacer></td></tr></table>
</td></tr></table>
<table width="146" border="0" cellspacing="0" cellpadding="1"><tr><td height="12"></td></tr><tr class="navBoxBrdr"><td><table width="144" border="0" cellspacing="0" cellpadding="0" class="navBoxFill"><tr><td width="12" class="navBoxBrdr">&nbsp;</td><td width="120" class="tocTitle">Tools</td><td width="12" class="navBoxBrdr">&nbsp;</td></tr><tr><td colspan="3" height="12"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td width="12">&nbsp;</td><td width="120"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=MailSecureMboxPage&u=1098304814653&llId=global&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return confirmExit2();" class="tocOff">Your Secure Mailbox</a></td><td width="12">&nbsp;</td></tr><tr><td colspan="3" height="12"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td width="12">&nbsp;</td><td width="120"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ReceRequAndTranPage&u=1098304814654&llId=global&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return confirmExit2();" class="tocOff">Your Recent Requests</a></td><td width="12">&nbsp;</td></tr><tr><td colspan="3" height="12"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td width="12">&nbsp;</td><td width="120"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=YourFavoritesPage1/Frames&u=1098304814654&wdw=YBRYourFavorites&llId=global&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRYourFavorites', '2');" class="tocOff">Your Favorites</a></td><td width="12">&nbsp;</td></tr><tr><td colspan="3" height="12"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td width="12">&nbsp;</td><td width="120"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ContactUsPage&llId=global&nodeId1=ContactUsPage&nodeId=ContactUsPage&u=1098304814655&wdw=YBRPrimary" onClick="updateLinkWithDates(this);return confirmExit2();" class="tocOff">Contact Us</a></td><td width="12">&nbsp;</td></tr><tr><td colspan="3" height="12"><spacer type="block" width="1" height="1"></spacer></td></tr></table>
</td></tr></table>
</td><td width="1" class="navVertRule"><br></td><td width="19" class="cellbg3">&nbsp;</td><td valign="top" width="572" class="cellbg3"><SCRIPT LANGUAGE="JavaScript">
function ProcessUserQuery()
{
var query = document.forms.frmQueryBox.boxSearch.value;
if (query == "" || query == " ")
{
alert("Enter a question or phrase. For example: 'How do I verify my mailing address?'")
return false
}
return true
}
function OpenSearchResultsPage(redirectURL, timeInMillis, startNodeId, openInSameWindow){
if (!ProcessUserQuery())
return false;
redirectURL = redirectURL + "&boxSearch="+escape(document.forms.frmQueryBox.boxSearch.value)+"&wdw=YBRSearchResultsWindow&JavaScriptEnabled=TRUE&lDt="+loadDate.getTime()+"&fn="+startNodeId+"&fWdw="+window.name;
if (openInSameWindow){
window.open( redirectURL, window.name )
}
else {
features = "toolbar=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=595,height=422";
win = window.open( redirectURL, 'YBRSearchResultsWindow', features )
win.focus()
}
return false;
}
</SCRIPT><table width="572" border="0" cellspacing="0" cellpadding="0"><tr><td height="5" colspan="3"></td></tr><tr><td width="212" valign="baseline">&nbsp;</td><td align="right" width="290" valign="baseline"><p><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ContentPage1/Frames&pgnd=CsHowToPrin-ALT1X&u=1098304814627&wdw=YBR1&llId=default&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBR1', '5');" class="linkprintfav">How to Print This Page</a></p></td><td align="right" width="70"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ExitSitePage&u=1098304814631&llId=Header&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return confirmExit2();"><img src=" width="59" height="18" border="0" alt="Log Off"></a></td></tr></table>
<table width="572" border="0" cellspacing="0" cellpadding="0"><tr><td height="8"></td></tr><tr><td valign="top"><span class="welcome">Welcome, JASON M. LESCHER </span></td></tr></table>
<table width="572" border="0" cellspacing="0" cellpadding="0"><tr><td height="7"></td></tr><tr><td class="alertbrdr"><table width="572" border="0" cellspacing="1" cellpadding="3"><tr><td class="alertbg"><p class="messagetext"><b>Note: </b>If you were offered an HMO last year that is not available...<a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=MoreAlertsPage1/Frames&u=1098304814632&wdw=YBR2&llId=header&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBR2', '0');" class="morelink">MORE</a></p></td></tr><tr><td class="alertbg"><p class="messagetext"><b></b>Most claims administrators don't send an ID card if you reenroll each year. However, if you're enrolling in a new plan, you should receive an ID card from your medical and prescription drug administrator or HMO around the time your new coverage begins. If you require care before you receive your ID card, your Confirmation of Coverage statement can generally be used as verification of your benefits coverage. </p></td></tr></table>
</td></tr></table>
<table width="572" border="0" cellspacing="0" cellpadding="0"><tr><td height="12"></td></tr><tr><td><a name="main"></a> <p class="header"></p></td></tr><tr><td height="2"></td></tr></table>
<table width="572" border="0" cellspacing="0" cellpadding="0"><tr><td><span class="header">Annual Enrollment</span><span class="headerduedate"> Deadline: 10-27-2004</span></td></tr><tr><td height="2"></td></tr></table>
<table width="572" border="0" cellspacing="0" cellpadding="0"><tr><td colspan="3" class="sectionrule" height="2"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td colspan="3" valign="top" height="10"></td></tr><tr><td width="184" valign="top" align="center"><table width="124" border="0" cellspacing="0" cellpadding="0"><tr><td class="buttonhl" rowspan="3" width="1"><spacer type="block" width="1" height="1"></spacer></td><td class="buttonhl" height="1"><spacer type="block" width="1" height="1"></spacer></td><td class="buttonhl" width="1" height="1"><spacer type="block" width="1" height="1"></spacer></td><td class="buttonsd2" rowspan="4" width="1"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td class="buttonbg"><table border="0" cellspacing="0" cellpadding="3" width="100&#37;"><tr align="center"><td width="164"><p><nobr><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=DpndInfoPage&u=1098304814633&llId=EnrlBtnClass2&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);" class="buttonlink2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a> <a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=DpndInfoPage&u=1098304814633&llId=EnrlBtnClass1&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);" class="buttonlink1">Enroll</a> <a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=DpndInfoPage&u=1098304814633&llId=EnrlBtnClass2&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);" class="buttonlink2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a> </nobr><br><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=DpndInfoPage&u=1098304814633&llId=EnrlBtnClass2&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);" class="buttonlink2">(View Coverage/<br>Make Changes)</a></p></td></tr></table>
</td><td class="buttonsd1" rowspan="2" width="1"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td class="buttonsd1" height="1"><spacer type="block" width="1" height="1"></spacer></td></tr><tr class="buttonsd2"><td colspan="3" height="1"><spacer type="block" width="1" height="1"></spacer></td></tr></table>
</td><td width="10">&nbsp;</td><td width="378" valign="top"><table width="378" border="0" cellspacing="0" cellpadding="0"><tr><td colspan="3"><p><span class="subheadmedium">Your enrollment is complete.<br></span><span class="daysleft">You have 8 more days if you want to make changes.</span></p></td></tr><tr><td colspan="3" height="5"></td></tr><tr><td colspan="3" class="sectionrule"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td colspan="3" height="5"></td></tr><tr><td colspan="3"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=EnrlCurrCvrgPage1/Frames&u=1098304814634&wdw=YBREnrlCurrCvrg&llId=toolkit&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBREnrlCurrCvrg', '5');">View Current Coverage for You and Your Dependents</a></td></tr><tr><td colspan="3" height="5"></td></tr><tr><td colspan="3"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=PendAnnlEnrlPage1/Frames&u=1098304814635&wdw=YBR3&llId=aeguide&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBR3', '5');">View Pending Coverage as of 01-01-2005 for You and Your Dependents</a></td></tr><tr><td colspan="3" height="5"></td></tr><tr><td colspan="3"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ContentPage1/Frames&pgnd=BM04HEALINSU&u=1098304814635&wdw=YBRBenefitsManual&llId=default&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRBenefitsManual', '5');">Learn More About Your Health, Insurance... Benefits</a></td></tr><tr><td colspan="3" height="5"></td></tr><tr><td colspan="3" height="10"></td></tr><tr><td colspan="3" class="sectionrule"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td colspan="3" height="5"></td></tr><tr><th colspan="3" class="colsubhd">Enrollment Decision Toolkit</th></tr><tr><td colspan="3" height="10"></td></tr><tr><td width="184" valign="top"><table width="184" border="0" cellspacing="3" cellpadding="0"><tr><td colspan="2" width="175"><b>Medical</b></td></tr><tr><td width="10" align="center" valign="top">&#149;</td><td width="165" valign="top"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=HpccChcPage1/Frames&u=1098304814636&wdw=YBRHpcChcPage&llId=toolkit&PLAN-ID=4040&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRHpcChcPage', '6');">Compare Your Medical Options</a></td></tr><tr><td width="10" align="center" valign="top">&#149;</td><td width="165" valign="top"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ThrdPtyGeoAcsB1Page1/Frames&u=1098304814637&wdw=YBRGeoPage&llId=toolkit&PLAN-ID=4040&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRGeoPage', '5', true);">Find a Doctor in Your Medical Plan</a></td></tr><tr><td width="10" align="center" valign="top">&#149;</td><td width="165" valign="top"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ExpnEstmChcPage1/Frames&u=1098304814638&wdw=YBRExpnEstmChc&llId=toolkit&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRExpnEstmChc', '6');">Estimate and Compare Medical Expenses by Option</a></td></tr><tr><td colspan="2" height="10"></td></tr><tr><td colspan="2" width="175"><b>Dental</b></td></tr><tr><td width="10" align="center" valign="top">&#149;</td><td width="165" valign="top"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=HpccChcPage1/Frames&u=1098304814639&wdw=YBRHpcChcPage&llId=toolkit&PLAN-ID=4030&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRHpcChcPage', '6');">Compare Your Dental Options</a></td></tr><tr><td width="10" align="center" valign="top">&#149;</td><td width="165" valign="top"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ThrdPtyGeoAcsB1Page1/Frames&u=1098304814640&wdw=YBRGeoPage&llId=toolkit&PLAN-ID=4030&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRGeoPage', '5', true);">Find a Dentist in Your Dental Plan</a></td></tr><tr><td colspan="2" height="10"></td></tr><tr><td colspan="2" width="175"><b>Vision</b></td></tr><tr><td width="10" align="center" valign="top">&#149;</td><td width="165" valign="top"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ThrdPtyGeoAcsB1Page1/Frames&u=1098304814640&wdw=YBRGeoPage&llId=toolkit&PLAN-ID=4000&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRGeoPage', '5', true);">Find an Eye Doctor in Your Vision Plan</a></td></tr></table>
</td><td width="10">&nbsp;</td><td width="184" valign="top"><table width="184" border="0" cellspacing="3" cellpadding="0"><tr><td colspan="2" width="175"><b>Insurance</b></td></tr><tr><td width="10" align="center" valign="top">&#149;</td><td width="165" valign="top"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=LifeInsureCalculatorPage1/Frames&u=1098304814641&wdw=YBRLifeCalculator&llId=toolkit&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRLifeCalculator', '5');">Estimate Your Life Insurance Needs</a></td></tr><tr><td colspan="2" height="10"></td></tr><tr><td colspan="2" width="175"><b>Spending Accounts</b></td></tr><tr><td width="10" align="center" valign="top">&#149;</td><td width="165" valign="top"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=WhyUseAHcsaPage1/Frames&u=1098304814641&wdw=YBRWhyUseAHcsaPage&llId=toolkit&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRWhyUseAHcsaPage', '5');">Why Use a Health Care Spending Account?</a></td></tr><tr><td width="10" align="center" valign="top">&#149;</td><td width="165" valign="top"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=HcaCalculatorPage1/Frames&u=1098304814642&wdw=YBRHcaCalculator&llId=toolkit&PLAN-ID=6760&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRHcaCalculator', '5');">Estimate Your Medical Care Reimbursement Account Expenses</a></td></tr><tr><td width="10" align="center" valign="top">&#149;</td><td width="165" valign="top"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=DcaCalculatorPage1/Frames&u=1098304814642&wdw=YBRDcaCalculator&llId=toolkit&PLAN-ID=6770&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRDcaCalculator', '5');">Estimate Your Dependent Care Reimbursement Account Expenses</a></td></tr></table>
</td></tr></table>
</td></tr><tr><td colspan="3" height="20">&nbsp;</td></tr></table>
<table width="572" border="0" cellspacing="0" cellpadding="0"><tr><td height="1" colspan="1" class="footerrule"><spacer type="block" width="1" height="1"></spacer></td></tr><tr><td height="14" colspan="1"></td></tr><tr align="center"><td colspan="1" class="smalltext"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ContentPage&u=1098304814643&llId=globalAbouTheSite&pgnd=CsAbouTheSite&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return confirmExit2();" class="linksmallbold">About the Site</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ContentPage&u=1098304814644&llId=globalTopQues&pgnd=CsTopQues&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return confirmExit2();" class="linksmallbold">Top Questions</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ContactUsPage&u=1098304814644&llId=global&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return confirmExit2();" class="linksmallbold">Contact Us</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ContentPage&u=1098304814645&llId=globalLegaInfo&pgnd=CsLegaInfo&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return confirmExit2();" class="linksmallbold">Legal Information</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=PrivacyStmtPage1/Frames&u=1098304814645&wdw=YBRPrivacyWindow&llId=default&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return LaunchSecondWindow(this, 'YBRPrivacyWindow', '5');" class="linksmallbold">Privacy Statement</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=ExitSitePage&u=1098304814645&llId=Footer&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return confirmExit2();" class="linksmallbold">Log Off</a></td></tr><tr><td colspan="1" height="5"></td></tr><tr align="center"><td height="14" colspan="1" class="smalltext"><a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=HealthInsPage&u=1098304814646&llId=global&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return confirmExit2();">Health, Insurance...</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=PrsnPrflTab&u=1098304814647&llId=global&subTab=PrefdPage&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return confirmExit2();">Your Profile</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="/cl1ybrdgp4/tbiappt400/TbiaTrnsPage?nodeId=LifeEvntsPage&u=1098304814647&llId=global&isSSO=false&isYTR=false" onClick="updateLinkWithDates(this);return confirmExit2();">Life Events</a></td></tr><tr><td height="10"></td></tr><tr align="center"><td class="smalltext">Copyright &#169; 1997-2004 Hewitt Management Company LLC</td></tr></table>
</td></tr></table></body></html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top