<!--
var ShockMode = 0;
var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ?
	navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
var isNet6 = navigator.userAgent && (navigator.userAgent.indexOf("Netscape6")>=0);
var isJavaE = navigator.javaEnabled()==true;


function showFlashBanner( FlashSource, ImageSource, CorporateName, Width, Height ){

if (plugin) {
	var isIEMac = navigator.userAgent && (navigator.userAgent.indexOf("MSIE")>=0) && (navigator.userAgent.indexOf("Mac")>=0);
	if (!isIEMac && !isNet6) {
		ShockMode = 1;
	}
}
else if (!isNet6 && 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)
   ) {
  var end="RIPT";
  document.write('<SC'+end+' LANGUAGE=VBScript\> \n');
  document.write('on error resume next \n');
  document.write('ShockMode = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.4")))\n');
  document.write('Sub ' + CorporateName + '_FSCommand(ByVal command, ByVal args)\n');
  document.write('    call ' + CorporateName + '_DoFSCommand(command, args)\n');
  document.write('end sub\n');
  document.write('</SC'+end+'\> \n');
}

if ( ShockMode ) {
  document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
  document.write(' codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"');
  document.write('  ID=' + CorporateName + ' WIDTH=' + Width + ' HEIGHT=' + Height + '>');
  document.write('  <PARAM NAME=movie VALUE="' + FlashSource + '"> ');
  document.write('  <PARAM NAME=quality VALUE=autohigh> ');
  document.write('  <PARAM NAME=bgcolor VALUE=#FFFFFF> ');
  document.write('<EMBED SRC="' + FlashSource + '" NAME=' + CorporateName );
  document.write(' swLiveConnect=TRUE WIDTH=' + Width + ' HEIGHT=' + Height + '');
  document.write(' bgcolor=#ffffff QUALITY=autohigh');
  document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
  document.write('</EMBED>');
  document.write('</OBJECT>');
} else {
  document.write('<IMG SRC="' + ImageSource + '" WIDTH=' + Width + ' HEIGHT=' + Height + ' BORDER=0 alt="' + CorporateName + '">');
}}
//-->
