//the text for the javascript help popups 

var helpPhoneTitle = 'Phone Number Format'
var helpPhone = 'Phone number format is like this: ###-###-####<br />Example: 800-555-1212'
var helpEmailTitle = 'Email Address Format'
var helpEmail = 'Email address must be formatted with an at sign, @ and have a dot extension.  Example: myname@mydomain.com'
var helpEmailConfirmTitle = 'Confirm Email Format'
var helpEmailConfirm = 'Re-enter your email to exactly match the Email Address entry above.'
var helpCityTitle = 'City Format'
var helpCity = 'Letters, comma, dash and space only. Maximum number of characters is 20.'
var helpFirstNameTitle = 'First Name Format'
var helpFirstName = 'Letters, dash, space and apostrophe only. Maximum number of characters is 30.'
var helpLastNameTitle = 'Last Name Format'
var helpLastName = 'Letters, dash, space and apostrophe only. Maximum number of characters is 40.'
var helpMiddleInitTitle = 'Middle Initial Format'
var helpMiddleInit = 'One letter, or one letter and a period'
var helpUsernameTitle = 'Username Format'
var helpUsername = 'Must be between 6 and 16 characters. Invalid characters are: &#92; | / &#39; &#34; ; : % ? &#60; &#62; and space.'
var helpConfirmUsernameTitle = 'Confirm Username'
var helpConfirmUsername = 'Re-enter your username to exactly match the Username entry above.'
var helpPasswordTitle = 'Password Format'
var helpPassword = 'Must be between 6 and 16 characters. Invalid characters are: &#92; | / &#39; &#34; ; : % ? &#60; &#62; and space.'
var helpPasswordConfirmTitle = 'Confirm Password'
var helpPasswordConfirm = 'Re-enter your password to exactly match the Password entry above.'
var helpMonthlyPaymentsTitle = 'Monthly Payments'
var helpMonthlyPayments = 'Enter whole dollars, numbers only, with no punctuation.<br />Example: 1215 would be equal to $1,215'
var helpUnsecuredDebtTitle = 'Unsecured Debt'
var helpUnsecuredDebt = 'Select the approximate amount of unsecured debt you have from the drop down list.'
var helpAvailableCreditTitle = 'Available Credit'
var helpAvailableCredit = 'Select the approximate amount of credit you have remaining on your cards from the drop down list.'
var helpCityStateTitle = 'City and State Format'
var helpCityState = 'City up to 50 characters. Letters, hyphen, period, space and apostrophy are valid. Choose your state from the drop down list.'
var BestTimeToCallTitle = 'Best Time To Call'
var BestTimeToCallText = 'Please select the best time of day to call you from the drop down list.'
var SteadyIncomeTitle = 'Steady Income'
var GenericDropDownText = 'Please select your answer from the drop down list.'
var MilitaryTitle = 'Military Status'
var PayCutTitle = 'Financial Reduction'
var MeetingObligationTitle = 'Meeting Obligations'
var DecisionTitle = 'Decided on Reduction Type'
var HeadAboutUsTitle = 'Where You Hear About Us'
var AbleToStartTitle = 'Financial Assistance'
var HowFarBehindTitle = 'How Far Behind'

function ShowHelp(id, title, desc){
div = document.getElementById(id);
div.style.display = 'inline';
div.style.position = 'absolute';
div.style.width = '175';
div.style.float = 'left';
div.style.backgroundColor = '#F2EAE1';
div.style.border = 'solid 1px #A6A09A';
div.style.padding = '5px';
div.style.color = '#DF514F';
div.style.fontFamily = 'Verdana, Arial';
div.style.fontSize = '11px';
div.style.textAlign = 'left';
div.innerHTML = '<span style="font-weight:bold;text-decoration:underline">' + title + '</span><br />' + desc;
}

function HideHelp(id)
{
div = document.getElementById(id);
div.style.display = 'none';
}