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 + '<font size="-1" face="Arial, Helvetica, sans-serif"><center>';
	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>&#169; Copyright 1999-' + sYear + ' Mutual of America Life Insurance Company.<br />320 Park Avenue<br />New York, NY 10022-6839<br />';
	sTmp = sTmp + '<br />Mutual of America<sup>&reg;</sup> and Mutual of America Your Retirement Company<sup>&reg;</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></center></font>';

	sTmp = sTmp + '</MAP>';
	
	document.write(sTmp);
	
}	