	function createPlayer(thePlaceholder, thePlayerId, theWidth, theHeight, theFile, theLink, theAutostart) {
		var flashvars = {
			author:"HerbMedia",
			duration:"0",
			file:theFile, 
			link:theLink,  
			start:"0", 
			controlbar:"none",
			playlist:"none", 
			playlistsize:"180",  
			autostart:theAutostart, 
			bufferlength:"1", 
			displayclick:"play", 
			item:"0",
			allowfullscreen:"false",
			allowscriptaccess:"never",
			quality:"false", 
			repeat:"always", 
			shuffle:"false", 
			stretching:"uniform",
			volume:"90",   
			linktarget:"_blank"
		}
		var params = {
			allowfullscreen:"false", 
			allowscriptaccess:"always"
		}
		var attributes = {
			id:thePlayerId,  
			name:thePlayerId
		}
		swfobject.embedSWF("./player/player.swf", thePlaceholder, theWidth, theHeight, "9.0.115", false, flashvars, params, attributes);
	}
	function initPlayer(theFile, id, theAutostart) {
		createPlayer('placeholder1', 'movie', '960', '540', theFile, 'http://www.herbmedia.kr', theAutostart)
	}