// -------------------------------------------------------------------------------------------------------
// 2006³â 3¿ù 10ÀÏ
// MS»çÀÇ IE Patch¿¡ µû¸¥ ¼öÁ¤
//--------------------------------------------------------------------------------------------------------

function viewFlash(src,width,height,wmode)
{
	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="' + width + '" height="' + height + '">');
	document.write('<param name=movie value="' + src + '">');
	document.write('<param name=quality value=high>');
	document.write('<param name=allowScriptAccess value=always>');
	if(wmode == 1){ document.write('<param name="wmode" value="Transparent">');}
	document.write('<embed src="' + src + '" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '">');
	document.write('</embed> ');
	document.write('</object>');
}

function viewMovie(src,width,height,wmode)
{
	document.write('<object classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" width="' + width + '" height="' + height + '">');
	document.write('<param name="Filename" value="' + src + '">');
	document.write('<param name="AutoStart" value="1">');
	document.write('<param name="AllowScan" value="true">');
	document.write('<param name="ShowStatusBar">');
	document.write('<param name="ShowTracker">');
	document.write('</object>');
}

/////////////////////////////////////////////////////////////////////////////////////////////////////// ÇÃ·¡½¬ ¹®Á¦
function flashobject(file,width,height,bgcolor,name) {
	document.write('<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="'+width+'" height="'+height+'" id="'+name+'">'
	+ '<param name="movie" value="'+file+'" />'
	+ '<param name="quality" value="best" />'
	+ '<param name="wmode" value="transparent" />'
	+ '<param name="bgcolor" value="'+bgcolor+'" />'
	+ '<param name="menu" value="false" />'
	+ '<param name="AllowScriptAccess" value="always" />'
	+ '<embed src="'+file+'" quality="high" wmode="transparent" bgcolor="'+bgcolor+'" width="'+width+'" height="'+height+'" name="'+name+'" menu="false" AllowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'
	+ '</object>');
}
