function FlashPlay(filePath, width, height, name, id){
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,22,0' width="+width+" height="+height+" name="+name+" id="+id+">");
	document.write("<param name='allowScriptAccess' value='always'>");
	document.write("<param name='movie' value="+filePath+">");
	document.write("<param name='quality' value='high'>");
	//document.write("<param name=wmode value=transparent>"); //Åõ¸í¸ðµå.
	document.write("<embed src="+filePath+" quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width="+width+" height="+height+"></embed>");
	document.write("</object>");
}


function FlashPlay2(bgimg, filePath, width, height, name, id){
	document.write("<table border=0 cellpadding=0 cellspacing=0>");
	document.write("<tr><td background="+bgimg+">"); //¹è°æÀÌ¹ÌÁö
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,22,0' width="+width+" height="+height+" name="+name+" id="+id+">");
	document.write("<param name='allowScriptAccess' value='always'>");
	document.write("<param name='movie' value="+filePath+">");
	document.write("<param name='quality' value='high'>");
	document.write("<param name=wmode value=transparent>"); //Åõ¸í¸ðµå.
	document.write("<embed src="+filePath+" quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width="+width+" height="+height+"></embed>");
	document.write("</object>");
	document.write("</tr></td>");
	document.write("</table>");
}