var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

// Handle all the the FSCommand messages in a FutureSplash movie
function XMASSPOT_DoFSCommand(command, args) {
  var XMASSPOTObj = InternetExplorer ? XMASSPOT : document.XMASSPOT;
  // Place your code here...
}
// Hook for Internet Explorer 
if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.userAgent.indexOf("Windows 95")>=0 || navigator.userAgent.indexOf("Windows 98")>=0 || navigator.userAgent.indexOf("Windows NT")>=0)) {
	document.write('<SCRIPT LANGUAGE=VBScript\> \n');
	document.write('on error resume next \n');
	document.write('Sub XMASSPOT_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call XMASSPOT_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\> \n');
}

