/*
	Description:	Specialized array of field names
								for Annuity Quote page.
								Variables initalized for pop-up
								dialog box error messages. (Netscape Only)
  Requirements:	
**************************************/

//	This is an array to work in conjunction with Validate.js and RegExpValidate.js
//	Read notes and requirements above.

var arrEl = new Array(
					//[[type_name],[function],[required],[label],[dependency],[condition],[value]]
					[["txt_textfield"],["validateNumeric"],["Yes"],[""],[""],[""],[""]],
					[["txt_textfield2"],["validateNumeric"],["Yes"],[""],[""],[""],[""]],
					[["txt_textfield3"],["validateNumeric"],["Yes"],[""],[""],[""],[""]],
					[["txt_textfield4"],["validateNumeric"],["Yes"],[""],[""],[""],[""]]);

// p is an abbreviation for "prompt"

var pEntryPrompt = "Please enter a valid value for "
var pEntryPromptEnd = "."
var pIvalidPromptEnd = "."
var pIvalidPrompt = "This is not a valid "

//empty field
var textfield_empty=pEntryPrompt+'the Amount of Investment field'+pEntryPromptEnd
var textfield2_empty=pEntryPrompt+'the Event Time Horizon field'+pEntryPromptEnd
var textfield3_empty=pEntryPrompt+'the Investment Rate of Return field'+pEntryPromptEnd
var textfield4_empty=pEntryPrompt+'the Tax Rate field'+pEntryPromptEnd


//invalid field
/*var textfield_inv=pInvalidPrompt+'the Amount of Investment field'+pEntryPromptEnd
var textfield2_inv=pInvalidPrompt+'the Event Time Horizon field'+pEntryPromptEnd
var textfield3_inv=pInvalidPrompt+'the Investment Rate of Return field'+pEntryPromptEnd
var textfield4_inv=pInvalidPrompt+'the Tax Rate field'+pEntryPromptEnd*/

