function object_tag(file_name, width, 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="'+width+'" height="'+height+'">');
	document.write('<PARAM NAME="movie" VALUE="'+file_name+'">');
	document.write('<PARAM NAME="wmode" VALUE="transparent">');
	document.write('<PARAM NAME="quality" VALUE="high">');
	document.write('<EMBED SRC="'+file_name+'" QUALITY="high" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" TYPE="application/x-shockwave-flash" WIDTH="'+width+'" HEIGHT="'+height+'"></embed>');
	document.write('</OBJECT>');
}

function object_tag_flashvars(file_name, width, height, flashvars_param)
{
	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="'+file_name+'?device='+flashvars_param+'">');
	document.write('<PARAM NAME="wmode" VALUE="transparent">');
	document.write('<PARAM NAME="quality" VALUE="high">');
	document.write('<EMBED SRC="'+file_name+'?device='+flashvars_param+'" QUALITY="high" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" TYPE="application/x-shockwave-flash" WIDTH="'+width+'" HEIGHT="'+height+'"></embed>');
	document.write('</OBJECT>');
}

function object_tag2(file_name, width, 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="'+width+'" height="'+height+'">');
//	document.write('<PARAM NAME="movie" VALUE="'+file_name+'">');
//	document.write('<PARAM NAME="quality" VALUE="high">');
//	document.write('<PARAM NAME="wmode" VALUE="transparent">');
	document.write('<EMBED SRC="'+file_name+'" QUALITY="high" WMODE="transparent" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" TYPE="application/x-shockwave-flash" WIDTH="'+width+'" HEIGHT="'+height+'"></embed>');
//	document.write('</OBJECT>');
}

function object_movie_simple( file_name, width, height ) {
	document.write('<OBJECT ID="sample" WIDTH="'+width+'" HEIGHT="'+height+'" NAME="sample" CLASSID="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" VIEWASTEXT>');
	document.write('<PARAM NAME="URL" VALUE="'+file_name+'">');
	document.write('<PARAM NAME="uimode" VALUE="mini">');
  	document.write('<PARAM NAME="EnableContextMenu" VALUE="0">');
	document.write('</OBJECT>');
}

function object_gnb(file_name, width, 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="'+width+'" HEIGHT="'+height+'">');
	document.write('<PARAM NAME="movie" VALUE="'+file_name+'">');
	document.write(" <param name='allowScriptAccess' value='always' />");
	document.write('<PARAM NAME="quality" VALUE="high">');
	document.write('<PARAM NAME="FlashVars" VALUE="menuVar00=http://www.cowon.com&menuVar01=http://product.cowon.com&menuVar02=http://support.cowon.com&menuVar03=http://contents.cowon.com&menuVar04=http://plaza.cowon.com&menuVar05=http://mobile.cowon.com&menuVar06=http://shop.cowon.com&Linktarget=COWON_PORTAL&menuIndex=CONTENTS">');
	document.write('<EMBED SRC="'+file_name+'" QUALITY="high" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" TYPE="application/x-shockwave-flash" WIDTH="'+width+'" HEIGHT="'+height+'" allowScriptAccess="always"></EMBED>');
	document.write('</OBJECT>');
}