// this is a workaround for the patch that Microsoft issued recently which forces the user to "click to
// activate" a flash movie.  See the following URL for more information:
// http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/overview/activating_activex.asp

document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="' + jsMovieWidth + '" height="' + jsMovieHeight + '">');
document.write('<param name="movie" value="' + jsMovieToPlay + '">');
document.write('<param name="quality" value="high">');
document.write('<param name="wmode" value="transparent">');
document.write('<embed src="' + jsMovieToPlay + '" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + jsMovieWidth + '" height="' + jsMovieHeight + '"></embed>');
document.write('</object>');
