/*
//////////////////////////////////////////////////////////////////////////////////////////
//                                                 ¼öÁ¤ÀÏ 2007. 5. 27
//////////////////////////////////////////////////////////////////////////////////////////

file        = ÆÄÀÏ¸í
width    = ÇÃ·¡½Ã ³ÐÀÌ
height   = ÇÃ·¡½Ã ³ôÀÌ
quality  = ''ÀÌ¸é ±âº» 'best'('best', 'auto', 'low')
version = ''ÀÌ¸é ±âº» '9'·Î¼³Á¤
wmode = 'opacity' ¶Ç´Â '' ÀÌ¸é ºÒÅõ¸í(ÇÃ·¡½ÃÀ§¿¡ ÀÚ¹Ù½ºÅ©¸³Æ® ·¹ÀÌ¾î »ç¿ë½Ã 'opaque', ÇÃ·¡½Ã ¹è°æÅõ¸í 'transparent')
color    = '' ÀÌ¸é ±âº» »ö»ó '#ffffff'

*/


function embededFlash(file, width, height, quality, version, wmode, color) {
//ÆÄÀÏ°ª ÀÖ´ÂÁö Ã¼Å©
if(file == ''||file == "") 
	//var file = 'random_file' + Math.round(Math.random()*10);

//width°ª Ã¼Å©
if(width == ''||width == "") var width = '100%';

//height°ª Ã¼Å©
if(height == ''||height == "") var height = '100%';

//Ä÷¸®Æ¼°ª Ã¼Å©
if(quality == ''||quality == "") var quality = 'best';

//¹öÁ¯°ª ÀÖ´ÂÁö Ã¼Å©
if(version == ''||version == "") var version = '9';

//¹è°æ»ö Ã¼Å©
if(color == ''||color == "") var color = '#ffffff';

document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase=http://fpdownload.adobe.com/pub/shockwave/cabs/flash/swflash.cab#version=' + version +',0,0,0 width='+width+' height='+height+' >');
document.write('<param name=allowScriptAccess value=sameDomain />');
document.write('<param name=movie value='+file+' />');

//Åõ¸íÃ³¸®
if(wmode != '' || wmode != "" || wmode != 'opacity') document.write('<param name=wmode value=' + wmode + '/>');

document.write('<param name=quality value='+quality+' />');
document.write('<param name=bgColor value='+color+' />');
document.write('<embed src='+file+' quality=best bgcolor='+color+' width='+width+' height='+height+' allowScriptAccess=sameDomain type=application/x-shockwave-flash pluginspage=http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash />');
document.write('</object>');
}
