(function(){
	var conf = {
	  data : '../swf/main.swf',
	  width : '780',
	  height : '252',
	  param : {
	    quality : 'high',
	    bgcolor : '#ffffff',
		FlashVars : 'path_xml=/swf/xml/ini.xml'
	  }
	};
	var createHtml = function(c){
	  var p = c.param;
	  p.movie = c.data;
	  var result = '<object data="'+c.data+'" type="application/x-shockwave-flash" width="'+c.width+'" height="'+c.height+'">';
	  for ( var i in p ) {
	    result += '<param name="'+i+'" value="'+p[i]+'" />';
	  }
	  result += '</object>';
	  return result;
	};
	document.write(createHtml(conf));
})();