<!--

////////////////////////////////////////////////////////////////////////////////////////////
//	¹öÀü   : Ver 1.0.0
//	ÀÛ¼ºÀÚ : ±èÁ¾±æ
//	ÀÛ¼ºÀÏ : 2006/03/30
//	¼³¸í   : IE ÆÐÄ¡·Î ÀÎÇÑ Embed ÅÂ±× ¼öÁ¤(¿ÜºÎÆÄÀÏ ½ºÅ©¸³Æ®¿¡¼­ È£Ãâ)
////////////////////////////////////////////////////////////////////////////////////////////
// url, width, height
function embed(strMediaURL,obj_width,obj_height)
{
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+obj_width+'" height="'+obj_height+'">');
document.write('<param name="movie" value="'+strMediaURL+'">');
document.write('<param name="quality" value="high">');
document.write('<param name="wmode" value="transparent">');
document.write('<embed src="' + strMediaURL + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + obj_width + '" height="' + obj_height + '"></embed>');
document.write('</object>');

//var myObjectElement = document.createElement('<embed src="' + strMediaURL + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + obj_width + '" height="' + obj_height + '"></embed>');
//document.write(myObjectElement);
}
//-->         
