<!-- Animation

// variables
var color		= "FFBC00"	// header background color
var flashheight	= "51"		// heigh of the flash 
var flashwidth	= "850"		// width of the flash

document.write('<TABLE cellpadding=0 cellspacing=0 border=0 width="100%" BGCOLOR="#'+color+'"><tr><td ALIGN="LEFT">');

document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+flashwidth+'" height="'+flashheight+'" id="swf_top" align="">');
document.write('<param name="movie" value="swf_top.swf">');
document.write('<param name="quality" value="high">');
document.write('<param name="bgcolor" value=#'+color+'>');
document.write('<embed src="swf_top.swf" quality=high bgcolor=#'+color+' width="'+flashwidth+'" height="'+flashheight+'" name="swf_top" align="" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">');
document.write('</embed>');
document.write('</object>');

document.write('</td></tr></table>');

//  End -->
