// IE ÆÐÄ¡
function showflash2(src, w, h) {
/*
	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='"+wid+"' height='"+hei+"'>")
	document.write("<param name='movie' value='"+str+"'>")
	document.write("<param name='wmode' value='transparent'>")
	document.write("<embed src='"+str+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+wid+"' height='"+hei+"'></embed></object>")

''ISSUE!!!
ÆäÀÌÁö È®´ë Ãà¼Ò ½ºÅ©¸³Æ® »ç¿ë½Ã
	<param name='wmode' value='transparent'>
	È®´ëÇÒ¶§ ÇÃ·¡½Ã°¡ ºñÁ¤»óÀûÀ¸·Î º¸ÀÌ´Â Çö»ó ¾ø¾îÁü.
	±×·¯³ª Åõ¸í ÇÃ·¡½Ã±â´ÉÀ» À§ÇØ ÇÊ¿äÇÑ ¿ä¼ÒÀÓ

*/
	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='"+w+"' height='"+h+"'>")
	document.write("<param name='movie' value='"+src+"'>");
	document.write("<param name='quality' value='h'>");
	document.write("<param name='menu' value='false'>");
//	document.write("<param name='wmode' value='transparent'>")
	document.write("<param name='allowScriptAccess' value='always' >");
	document.write("<embed src='"+src+"' wmode='transparent' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+w+"' height='"+h+"' menu='false' ></embed>");
	document.write("</object>");
}

function showflash(src, w, h)
{
	html = '';
	html += '<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="'+w+'" height="'+h+'">';
	html += '<param name="movie" value="'+src+'">';
	html += '<param name="quality" value="high">';
	//html += '<param name="wmode" value="transparent">';
	html += '<embed src="'+src+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+w+'" height="'+h+'"></embed>';
	html += '</object>';
	document.write(html);
}
