var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

// Handle all the the FSCommand messages in a Flash movie
function flash_DoFSCommand(command, args) {
  var form = InternetExplorer ? thisform : document.thisform;
  //
  // Place your code here...
  //
  if (command == "gotoCard") {
	if (typeof(lang) == "undefined") lang = 'nl';
  	if (lang == 'nl') {
		if (args == "1") form.butreplydirect.value = 378;
		if (args == "2") form.butreplydirect.value = 377;
		if (args == "3") form.butreplydirect.value = 376;
		if (args == "4") form.butreplydirect.value = 374;
		if (args == "5") form.butreplydirect.value = 375;
		if (args == "6") form.butreplydirect.value = 379;
		if (args == "8") form.butreplydirect.value = 381;
		if (args == "9") form.butreplydirect.value = 380;
		form.submit();
	}
  }
}
// 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 flash_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call flash_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\> \n');
}