function insFlashObj(src,width,height,wmode,id,bgcolor,name) {
	var flashContent = '<object type="application/x-shockwave-flash" data="/swf/c.swf?path=' + 
		src + 
		'" width="' + 
		width +
		'" height="' +
		height + 
		'">' +
		'<param name="movie" value="/swf/c.swf?path=' +
		src +
		'" />' +
		'<param name="wmode" value="' + 
		wmode + 
		'" />' +
		'<param name="id" value="' +
		id + 
		'" />' +
		'<param name="bgcolor" value="' + 
		bgcolor +
		'" />' +
		'<param name="name" value="' +
		name +
		'" />' +
	'</object>'
	;
	document.write(flashContent);
}