function OutputFlashBannerAnimation()
   {
   var HTMLString
   
   HTMLString =

'<table width="100%" border="0" cellspacing="0" cellpadding="0">' + 
	'<tr>' + 
	   '<td valign="TOP"><img src="/Global/Images/Banners/SunOne_salariesbanner.gif" border=0 alt="" hspace=0 vspace=0></td>' + 
   '</tr>' + 
	'</table>';


   if (isFlashEnabled())
      {
      document.writeln('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" ID="Logo" WIDTH="120" HEIGHT="600">');
      document.writeln('<PARAM NAME="movie" VALUE="/global/images/banners/SUnOne_salaries_120x600.swf">');
      document.writeln('<PARAM NAME="quality" VALUE="high">');
      document.writeln('<PARAM NAME="bgcolor" VALUE="#FFFFFF">');
      document.writeln('<PARAM NAME="wmode" VALUE="TRANSPARENT">');
      document.writeln('<EMBED src="/global/images/banners/SUnOne_salaries_120x600.swf" quality="high" bgcolor="#FFFFFF"  WIDTH="120" HEIGHT="600" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>');
      document.writeln('</OBJECT>');
      document.writeln('<!--------Begin SHOCKWAVE No Embed-------->');
      document.writeln('<noembed>');
      document.writeln('test');      
      document.writeln('</noembed>');
      document.writeln('<!--------End SHOCKWAVE No Embed-------->');
      document.writeln('<!----------End Shockwave-------------->');
      }
   else
      {
      document.writeln(HTMLString);
      }
   return 0;
   }
   
