
//----------------------------- Filename variables for "?" links ------------------------
		
		var retireTypeFile = "retireTypeFile.html"
		var ageRetireFile = "ageRetireFile.html"
		var yrsServiceFile = "yrsServiceFile.html"
		var biweeklyFile = "biweeklyFile.html"

//---------------------------------------------------------------------------------------		

		function launchAgeTable(pType)
		{ 
			OpenWin = this.open("retirement_calc/age_factor_table.asp?planType="+pType,'_blank', 'toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=525,height=400'); 
		}

		function ShowMessageBox(msg) 
		{ 
			alert(msg);
		}
		
		function RetireTypeHelp()
		{
			OpenWin = this.open("retirement_calc/"+retireTypeFile,'_blank', 'toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=525,height=400');
		}
		
		function AgeRetireHelp()
		{
			OpenWin = this.open("retirement_calc/"+ageRetireFile,'_blank', 'toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=525,height=400');
		}
		
		function YearsServiceHelp()
		{
			OpenWin = this.open("retirement_calc/"+yrsServiceFile,'_blank', 'toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=525,height=400');
		}
		
		function BiweeklyHelp()
		{
			OpenWin = this.open("retirement_calc/"+biweeklyFile,'_blank', 'toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=525,height=400');
		}
		
