function insertSwf(swfFile, width, height,version,transparent,swfId) {	
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
	document.write('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+version+',0,0,0" ');	
	document.write('width="'+width+'" height="'+height+'" align="top" id="'+swfId+'" onMouseOver="SendDataToFlashMovie(\'mouseInside\',\'true\');" onMouseOut="SendDataToFlashMovie(\'mouseInside\',\'false\');">');
	document.write('<param name="movie" value="' + swfFile + '"/>');
	document.write('<param name="quality" value="high"/>');
	document.write('<param name="swliveconnect" value="true"/>');
	if (transparent) {
		document.write('<param name="wmode" value="transparent"/>');
		addToEmbed='wmode="transparent"';
	} else {
		document.write('<param name="bgcolor" value="#ffffff"/>');
		addToEmbed='bgcolor="#FFFFFF"';
	}
	document.write('<param name="scale" value="noscale"/>');
	document.write('<embed src="' + swfFile + '" swliveconnect="true" name="'+swfId+'" scale="noscale" '+addToEmbed+' quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed></object>'); 
}