<!--
//ÀÏ¹ÝÇÃ·¡½Ã
function playflash(file,width,height,bgcolor,quality){
	document.write('<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"'+width+'\" height=\"'+height+'\" id=\"'+name+'\">');  //ÇÃ·¡½¬ÇÃ·¹ÀÌ¾î ¹öÀüÀÌ ÀÌÀü¹öÀüÀÏ°æ¿ì ¹öÀü 8À» º¯°æ
    document.write('<param name=\"movie\" value=\"'+ file +'\">');
    document.write('<param name=\"quality\" value=\"' + quality + '\">');        
    document.write('<embed src=\"'+file+'\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"'+width+'\" height=\"'+height+'\">');
	document.write('</embed>');
	document.write('</object>')
}
	

//Åõ¸í¹è°æ ÇÃ·¡½Ã
function playflash2(file,width,height,bgcolor,quality){
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'" id="'+name+'">');  //ÇÃ·¡½¬ÇÃ·¹ÀÌ¾î ¹öÀüÀÌ ÀÌÀü¹öÀüÀÏ°æ¿ì ¹öÀü 8À» º¯°æ
    document.write('<param name="movie" value="'+ file +'">');
    document.write('<param name="quality" value="' + quality + '">');  
	document.write('<param name="WMode" value="Transparent">');
    document.write('<embed src="'+file+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'">');
	document.write('</embed>');
	document.write('</object>')
}

//µ¿¿µ»óÇÃ·¡ÀÌ¾î
function playmovie(file,width,height){
	document.write('<embed src="'+file+'" width="'+width+'" height="'+height+'">');
	document.write('</embed>')
	
}
//-->

