var isIE = false;
function detectIE() {
	if (window.ActiveXObject){ 
		isIE = true; 
	}
}
function displayBar(){
	var sTmp;
	var sLevels;
	var s;
	var sYear;
	
	a=arguments;

	var iLevel = a[0]||null
	var bShowEmployee = a[1]||null
  
	//alert(iLevel);
	//alert(bShowEmployee);
	
	if (iLevel == 1){
		sLevels = '../';
	}else if (iLevel == 2){
		sLevels = '../../';
	}else if (iLevel == 3){
		sLevels = '../../../';
	}else{
		sLevels = '';
	}
		
	var right_now=new Date();
	sYear = (right_now.getYear());
	
	detectIE();
	if (!isIE){
		var thisYear = Number(sYear) + 1900;
		sYear = thisYear.toString();
	}

	sTmp = '<MAP title="Navigation Bar">';
	sTmp = sTmp + '<center><img src="/images/sub_sidenav_line.gif" width="85%" height="1" border="0"></center><br>';
	sTmp = sTmp + '<font size="-1" face="Arial, Helvetica, sans-serif"><center>';
	sTmp = sTmp + '<a title="Home" href="/lbp/moa_redir.asp?page=login" target="_top">My Account</a> | ';
	sTmp = sTmp + '<a title="Home" href="/lbp/moa_redir.asp?page=hotline" target="_top">Hotline Plus</a><br>';
	sTmp = sTmp + '<a title="Home" href="' + sLevels + 'home.asp?ButHit=home" target="_top">Home</a> | ';
	sTmp = sTmp + '<a title="Products" href="' + sLevels + 'MOAframe.asp?Main=Products/prod_main.asp&ButHit=prod" target="_top">Products</a> | ';
	sTmp = sTmp + '<a title="Investment Alternatives" href="' + sLevels + 'MOAframe.asp?Main=investments/invest_option_main.asp&ButHit=inv" target="_top">Investment Alternatives</a> | ';
	sTmp = sTmp + '<a title="Your Retirement Center" href="' + sLevels + 'MOAframe.asp?Main=lbp/index.html&ButHit=Pub" target="_top">Your Retirement Center</a> | ';
	sTmp = sTmp + '<a title="About Us" href="' + sLevels + 'MOAframe.asp?Main=about/Description.asp&ButHit=about" target="_top">About Us</a> | ';
	sTmp = sTmp + '<a title="Contact Us" href="' + sLevels + 'MOAframe.asp?Main=about/contact.asp&ButHit=about" target="_top">Contact Us</a> | ';
	sTmp = sTmp + '<a title="Site Map" href="' + sLevels + 'MOAframe.asp?Main=sitemap_main.asp&ButHit=map" target="_top">Site Map</a> | ';
	sTmp = sTmp + '<a title="Help" href="' + sLevels + 'MOAframe.asp?Main=help/help_main.asp&ButHit=help" target="_top">Help</a>';
	
	if (bShowEmployee)
		sTmp = sTmp + ' | <a title="Help" href="' + sLevels + 'MOAframe.asp?Main=employee/Employees.aspx" target="_top">Employees</a> ';

	sTmp = sTmp + '</center></font><br>';
	sTmp = sTmp + '<font size=-2 face="Arial, Helvetica, sans-serif"><center>© Copyright 1999-' + sYear + ' Mutual of America Life Insurance Company.<br>';
	sTmp = sTmp + '320 Park Avenue<br>New York, NY 10022-6839<br><br>Mutual of America<sup><font face="tahoma" size="2">&reg;</font></sup> and Mutual of America Your Retirement Company<sup><font face="tahoma" size="2">&reg;</font></sup> are registered service marks of Mutual of America Life Insurance Company.<br>';
	sTmp = sTmp + '<a href="' + sLevels + 'MOAframe.asp?Main=/other/legal.asp" target="_top" title="Important Legal Information">Legal Information</a>&nbsp;|&nbsp;';
	sTmp = sTmp + '<a href="' + sLevels + 'MOAframe.asp?Main=/other/webpriv.asp" target="_top" title="Privacy and Security Information">Privacy and Security Information</a>&nbsp;|&nbsp;';
	sTmp = sTmp + '<a href="' + sLevels + 'MOAframe.asp?Main=/other/bus_resumption.asp" target="_top" title="Business Resumption Plans">Business Resumption Plans</a>';
	//sTmp = sTmp + '<br><a href="/lbp/disclosure.asp">Disclosure</a>'
	sTmp = sTmp + '</center></font>';
	sTmp = sTmp + '</MAP>';
	
	document.write(sTmp);
}	