// JavaScript Document
<!--
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function main_DoFSCommand(command, args) {
  var mainObj = InternetExplorer ? main : document.main;
}
// 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 main_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call main_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\> \n');
}

    document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
    document.write('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
    document.write('  ID="main"    ');
    document.write('  WIDTH="768"  ');
    document.write('  HEIGHT="596" ');
    document.write('  ALIGN="">    ');
    document.write(' <PARAM NAME=movie VALUE="main.swf">');
    document.write(' <PARAM NAME=menu VALUE=false>            ');
    document.write(' <PARAM NAME=quality VALUE=high>          ');
    document.write(' <PARAM NAME=bgcolor VALUE=#FFFFFF>       ');
 
    document.write(' <EMBED src="main.swf"              ');
    document.write('  menu=false quality=high bgcolor=#FFFFFF ');
    document.write('  WIDTH="768"                             ');
    document.write('  HEIGHT="596"                            ');
    document.write('  swLiveConnect=true ID="main" NAME="main" ALIGN="" ');
    document.write('  TYPE="application/x-shockwave-flash" ');
    document.write('  PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
    document.write('</OBJECT> ');
//-->


