Changing the application title displayed in the browser

Hi,

How do you change the title of the application that is displayed in the browser? I don’t want to rename the application itself because of internal naming conventions, but also applications cannot be named with spaces. I thought there would be an obvious setting somewhere but I can’t find one.

I can change it using javascript in the onExecute event in my menu app such as below, but isn’t there a standard way to do it using scriptcase?

$menu_title = {sc_menu_item};

echo "<script>
      parent.document.title = \"$menu_title\";
	  </script>";