//°øÅë¹Ìµð¾îfunction EmbededMedia(objID,sourceUrl,objWidth,objHeight){
	document.write("<embed type='application/x-mplayer2' pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'");
	document.write("id='"+objID+"' name='"+objID+"' width='"+objWidth+"' height='"+objHeight+"'");
	document.write("src='"+sourceUrl+"' ShowStatusBar=true autostart='true'");
	document.write("loop='false' showcontrols=true enablecontextmenu=false bgcolor='#f6f6ec' style='BACKGROUND-COLOR: #f6f6ec'></embed>");}

function EmbededMedialoop(objID,sourceUrl,objWidth,objHeight){
	document.write("<embed type='application/x-mplayer2' pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'");
	document.write("id='"+objID+"' name='"+objID+"' width='"+objWidth+"' height='"+objHeight+"'");
	document.write("src='"+sourceUrl+"' ShowStatusBar=false autostart='true'");
	document.write("loop='-1' showcontrols=false enablecontextmenu=false bgcolor='#f6f6ec' style='BACKGROUND-COLOR: #f6f6ec'></embed>");}


//°øÅë À¯Æ©ºêfunction EmbededUTube(objID,sourceUrl,objWidth,objHeight)
{
    document.write("<object width='"+objWidth+"' height='"+objHeight+"'>");
    
	document.write("<param name='movie' value='http://www.youtube.com/v/"+sourceUrl+"&hl=ko&fs=1&border=0&rel=0&iv_load_policy=3&cc_load_policy=1'></param>");
	
	document.write("<param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='always'></param>");
		
	document.write("<embed src='http://www.youtube.com/v/"+sourceUrl+"&hl=ko&fs=0&border=0&rel=0&iv_load_policy=3&cc_load_policy=1' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='"+objWidth+"' height='"+objHeight+"'></embed>");
		
	document.write("</object>");
}

//°øÅë ÇÃ·¹½¬function EmbededFlash(sourceUrl, objWidth, objHeight)
{
	var strObjectTag = "\
	<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+objWidth+"' height='"+objHeight+"' id='permovie' align='middle'>\
	<param name='allowScriptAccess' value='always' />\
	<param name='movie' value='" + sourceUrl + "' />\
	<param name='wmode' value='transparent' />\
	<param name='quality' value='high' />\
	<embed src='"+ sourceUrl +"' quality='high' width='" + objWidth + "' height='" + objHeight + "' name='permovie' align='middle' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />\
	</object>\
	";
	
	document.write(strObjectTag);
}//°øÅë ÇÃ·¹½¬ ( scale="exactfit" )function EmbededFlash_exact(objid,sourceUrl, objWidth, objHeight)
{
	var strObjectTag = "\
	<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+objWidth+"' height='"+objHeight+"' id='"+objid+"' align='middle' >\
	<param name='allowScriptAccess' value='always' />\
	<param name='scale' value='exactfit' />\
	<param name='allowFullScreen' value='true' />\
	<param name='movie' value='" + sourceUrl + "' />\
	<param name='wmode' value='transparent' />\
	<param name='quality' value='high' />\
	<embed src='"+ sourceUrl +"' id='"+objid+"' quality='high' width='" + objWidth + "' height='" + objHeight + "' name='permovie' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />\
	</object>\
	";
	
	document.write(strObjectTag);
}