<!--

// @param swf The name of a SWF movie to display
// @param swfW The width of a SWF movie
// @param swfH The height of a SWF movie
// @param img The name of an alternative image to display
// @param imgW The width of the alternative image
// @param imgH The height of the alternative image
function printSWFMovie(swf, swfW, swfH, img, imgW, imgH)
{
	
	if(g_oBrowser.bIE && g_oBrowser.bWin) {
		if(isFlash(5, 'A', g_oBrowser)) {
			with (document) {
				open();
				write('<object style="z-index:10;" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="' + swfW + '" height="' + swfH + '" id="homeanim" align="top">');
				write('<param name="movie" value="' + swf + '">');
				write('<param name="quality" value="high">');
				write('<param name="bgcolor" value="#FFFFFF">');
				write('<param name="wmode" value="Transparent">');
				write('<embed src="' + swf + '" quality="high" bgcolor="#FFFFFF" width="' + swfW + '" height="' + swfH + '" name="homeanim" align="top"');
				write('type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
				write('</object>');
				close();
			}
		} else {
			with (document) {
				write('<img src="' + img + '" width="' + imgW + '" height="' + imgH + '" border="0" alt="" />');
			}
		}
	} else {
		with (document) {
			write('<img src="' + img + '" width="' + imgW + '" height="' + imgH + '" border="0" alt="" />');
		}
	}

}	// End printSWFMovie()

//-->