Unfortunately, the QuestionName function doesn't work outside of a specific question. We can still do this, though. Place this where you want to display the name of the first question on the page:
<span class="questionName"></span>
Then add this JavaScript to the page header:
<script>
$(document).ready(function(){
$('.questionName').text($('.question').get(0).id.replace(/_div$/, ''));
})
</script>