<!--
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function title_DoFSCommand() {
  var titleObj = InternetExplorer ? title : document.title;
		titleObj.Play();
}
// Hook for Internet Explorer 
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && 
	  navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language="VBScript"\> \n');
	document.write('on error resume next \n');
	document.write('Sub title_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call title_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('<\/script> \n');
}
//-->
