function submitQuestion() { var question = document.getElementById("questionText6"); document.location = 'http://answers.edmunds.com/AskQuestion.aspx?question=' + escape(question.value); } function updateCharCount6() { var questionTextBox = document.getElementById("questionText6"); var questionHelp = document.getElementById("questionHelp"); questionHelp.style.display = 'none'; var maxCharacters = 115; var count = questionTextBox.value.length; var charactersLeft = maxCharacters - count; if (charactersLeft < 0) { charactersLeft = 0; } document.getElementById("characterCount6").innerHTML = charactersLeft; if (count >= maxCharacters) { questionTextBox.value = questionTextBox.value.substring(0, maxCharacters - 1); } } function focusTextarea() { var questionTextBox = document.getElementById("questionText6"); var questionHelp = document.getElementById("questionHelp"); questionHelp.style.display = 'none'; questionTextBox.value = ''; questionTextBox.focus(); } function hoverButton(active) { if (active) { document.getElementById('questionButton').src = 'http://answers.edmunds.com/images/widgets/widget6/askButton_hover.gif'; } else { document.getElementById('questionButton').src = 'http://answers.edmunds.com/images/widgets/widget6/askButton.gif'; } } var html = ''; html += '
' + '
' + '
' + '
' + '

Car Questions Being Asked

' + '
' + '

115 character limit

Ask a Question

Ask Question

Enter your question here
(Provide question details in the next step)

' + '

' + '
' + '
' document.writeln(html);