function attachFlash(flashFile, id, _width, _height, _bgColor, isTransparent){
	//var flashName = flashFile.split('.');
	var str=''
	var trans_str='';
	str+=("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'  width='"+_width+"' height='"+_height+"' id='"+id+"' >");
	str+=("<param name='movie' value='"+flashFile+"' />");
	str+=("<param name='quality' value='high' />");
	str+=("<param name='allowScriptAccess' value='always' />");
	if( _bgColor.length>0 ){
		//str+=("<param name='bgcolor' value='"+_bgColor+"' />");
	}
	if(isTransparent == true){
		str+=("<param name='wmode' value='transparent' />");
		var trans_str=" wmode='transparent' ";
	}
	if( _bgColor.length>0 ){
		str+=("<embed src='"+flashFile+"' quality='high' bgcolor='"+_bgColor+"' width='"+_width+"' height='"+_height+"' name='"+id+"'"+" id='"+id+"'  "+trans_str+" allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	}else{
		str+=("<embed src='"+flashFile+"' quality='high' width='"+_width+"' height='"+_height+"' name='"+id+"'"+" id='"+id+"'  "+trans_str+" allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	}
	str+=("</object>");
	document.write(str);
}

