﻿<!--
//IE浏览器中,swf文件的多次点击的补丁
function genFlash(file, width, height, id) {	
	tempHtml = '';
	tempHtml += '<div>';

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