In the status_bar_header_inc.asp file I added/copied the FQA command button. and I am having trouble changing the text from FAQ to Contact below is the code
'Display the other common buttons
Response.Write (" <img src=""" & strImagePath & "FAQ." & strForumImageType & """ alt=""" & strTxtContact & """ title=""" & strTxtContact & """ style=""vertical-align: text-bottom"" /> <a href=""../contact.htm" & strQsSID1 & """>" & strTxtContact & "</a>")
Response.Write (" <img src=""" & strImagePath & "FAQ." & strForumImageType & """ alt=""" & strTxtFAQ & """ title=""" & strTxtFAQ & """ style=""vertical-align: text-bottom"" /> <a href=""help.asp" & strQsSID1 & """>" & strTxtFAQ & "</a>")
Response.Write (" <span id=""SearchLink"" onclick=""showDropDown('SearchLink', 'dropDownSearch', 230, 0);"" class=""dropDownPointer""><img src=""" & strImagePath & "search." & strForumImageType & """ alt=""" & strTxtSearchTheForum & """ title=""" & strTxtSearchTheForum & """ style=""vertical-align: text-bottom"" /> <script language=""JavaScript"" type=""text/javascript"">document.write('" & strTxtSearch & "')</script><noscript><a href=""search_form.asp" & strQsSID1 & """ rel=""nofollow"">" & strTxtSearch & "</a></noscript></span>")
If blnCalendar AND blnACode = False Then Response.Write (" <span id=""CalLink"" onclick=""getAjaxData('ajax_calendar.asp" & strQsSID1 & "', 'showCalendar');showDropDown('CalLink', 'dropDownCalendar', 210, 0);"" class=""dropDownPointer""><img src=""" & strImagePath & "calendar." & strForumImageType & """ alt=""" & strTxtCalendar & """ title=""" & strTxtCalendar & """ style=""vertical-align: text-bottom"" /> <script language=""JavaScript"" type=""text/javascript"">document.write('" & strTxtCalendar & "')</script><noscript><a href=""calendar.asp" & strQsSID1 & """>" & strTxtCalendar & "</a></noscript></span>")
When I upload this code it gives me this error
Microsoft VBScript runtime error '800a01f4'
Variable is undefined: 'strTxtContact'
/gocowboys/includes/status_bar_header_inc.asp, line 102
Where do I add the variable? strTxtContact?