<!--

// scripts for accessing flash demo

window.name='main'; // Names Main Window so we can point back to it if we want

function openWindow(theURL) {
	window.open(theURL,'demo','status=yes,scrollbars=no,width=720,height=450');
}

var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function danger_DoFSCommand(command, args) {
  var dangerObj = InternetExplorer ? danger : document.danger;
  //
  // Place your code here...
  //
}
// 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 danger_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call danger_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write("</SCRIPT\> \n");
}
//-->