// ActiveX Controll ÅëÇÕ ÆÄÀÏ

/**
¸Þ¼Òµå : FlashInt 
ÀÎÀÚ    : movie   - swf name
             x    -     width
             y    -     height
¼³¸í    : ±×¸®µå ÄÁÆ®·ÑÀ» ºÒ·¯¿Â´Ù.             
*/
function FlashInt(movie, id, x, y)
{
	document.write("<OBJECT CLASSID='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,12,36' id='"+id+"' width='"+x+"' height='"+y+"'>");
	document.write("<param name='allowScriptAccess' value='always' />");
	document.write("<param name='movie' value='" + movie +"'>");
	document.write("<param name='quality' value='high'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<embed src='"+ movie + "' quality='high' wmode='transparent' allowScriptAccess='always' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+x+"' height='" + y +"'></embed>");
	document.write("</OBJECT>");
}

function FlashInt2(movie, id, x, y)
{
	document.write("<OBJECT CLASSID='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab' id='"+id+"' width='"+x+"' height='"+y+"'>");
	document.write("<param name='allowScriptAccess' value='always' />");
	document.write("<param name='movie' value='" + movie +"'>");
	document.write("<param name='quality' value='high'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<embed src='"+ movie + "' quality='high' wmode='transparent' allowScriptAccess='always' pluginspage='http://www.adobe.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+x+"' height='" + y +"'></embed>");
	document.write("</OBJECT>");
}



