function printSWF(id, flashUri, vWidth, vHeight, winMode, bgColor, flashVars) {
	// ºê¶ó¿ìÀú Ã¼Å©
	var isie=(navigator.userAgent.toLowerCase().indexOf('msie')!=-1)? true : false;
	var isie6=(navigator.userAgent.toLowerCase().indexOf('msie 6')!=-1)? true : false;
	var isie7=(navigator.userAgent.toLowerCase().indexOf('msie 7')!=-1)? true : false;
	var isfirefox=(navigator.userAgent.toLowerCase().indexOf('firefox')!=-1)? true : false;
	var isopera=(navigator.userAgent.toLowerCase().indexOf('opera')!=-1)? true : false;

	var _obj_ = "";
	var locationProtocol = document.location.protocol + "//";
	if(isie){
		_obj_ += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="'+locationProtocol+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" width="' + vWidth + '" height="' + vHeight + '" id="' + id + '" name="' + id + '" align="middle">';
		_obj_ += '<param name="allowScriptAccess" value="always" />';
		_obj_ += '<param name="allowFullScreen" value="true" />';
		_obj_ += '<param name="movie" value="' + flashUri + '" />';
		_obj_ += '<param name="quality" value="high" />';
		_obj_ += '<param name="wmode" value="' + winMode + '" />';
		_obj_ += '<param name="bgcolor" value="' + bgColor + '" />';
		_obj_ += '<param name="flashvars" value="' + flashVars + '"/>';
		_obj_ += '</object>';
	}else{
		_obj_ += '<embed src="' + flashUri + '" quality="high" wmode="' + winMode + '" bgcolor="' + bgColor + '" width="' + vWidth +'" height="' + vHeight + '" id="' + id + '" name="' + id + '" flashvars="' + flashVars + '" align="middle" allowScriptAccess="always" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></embed>    ';
	}
	document.writeln( _obj_ );
	eval("window." + id + " = document.getElementById('" + id + "');");
}
