/* ++++++++++++++++++++++++++++++++++++++++++ *\
	ÀÛ¼ºÀÚ		: ±èÁø±Ô(idea72@daulsoft.com , p7227kjg@dreamwiz.com)
	ÀÛ¼ºÀÏÀÚ		: 2006-02-13
	±â´É			: IE Patch·Î ÀÎÇÑ Flash ÀÌ¹ÌÁö ¿ìÈ¸ ½ºÅ©¸³Æ®
\* ++++++++++++++++++++++++++++++++++++++++++ */

//------------------------------------------------------------------------------------------
// ¼öÁ¤ÀÚ : (ÁÖ)´Ù¿ï¼ÒÇÁÆ® - ÃÖÁØ±¸
// ¼öÁ¤ÀÏ : 2006-02-16
// ¼öÁ¤»çÇ× : ÁÖ¼®Ã·ºÎ? -_-
//------------------------------------------------------------------------------------------


// Object ÅÂ±× (ÇÃ·¡½Ã ÆÄÀÏ°æ·Î¿Í ÆÄÀÏ¸íÀÇ º¯¼ö¸¦ °°ÀÌ ÀÔ·Â)
function fnc_Return_Flash(str_Url, int_W, int_H)
{
	var str_Flash_Obj;

	var str_Url; // ÇÃ·¡½Ã ÆÄÀÏ°æ·Î & ÆÄÀÏ¸í
	var int_W; // ÇÃ·¡½Ã °¡·Î»çÀÌÁî
	var int_H; // ÇÃ·¡½Ã ¼¼·Î»çÀÌÁî

	str_Url		= str_Url;
	int_W		= int_W;
	int_H		= int_H;

	str_Flash_Obj = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0" \
						width="'+int_W+'" height="'+int_H+'">\n\
						<param name="movie" value="'+str_Url+'">\n\
						<param name="play" value="true">\n\
						<param name="loop" value="true">\n\
						<param name="quality" value="high">\n\
						<embed src="'+str_Url+'" play="true" loop="true" quality="high" \
						pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" width="'+int_W+'" height="'+int_H+'"></embed>\n\
					</object>';

	document.write(str_Flash_Obj);
}

// Object ÅÂ±× (ÇÃ·¡½Ã ÆÄÀÏ°æ·Î¿Í ÆÄÀÏ¸íÀÇ º¯¼ö¸¦ °°ÀÌ ÀÔ·Â)
function fnc_Return_Embed()
{
	var str_Embed_Obj;

	//str_Embed_Obj = '<embed src="mms://edudream.vod.nefficient.co.kr/edudream/daulsoft/20060720.wmv" width="450" height="100%" autostart="true" loop="false" hidden="false"></embed>';

	str_Embed_Obj = '<embed src="http://www.daulsoft.com/popup/20060801/20060720.wmv" width="450" height="100%" autostart="true" loop="false" hidden="false"></embed>';

	document.write(str_Embed_Obj);
}
