function playflash(file,width,height,bgcolor,quality,title){
        document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"  width="'+width+'" height="'+height+'" id="'+title+'">');  //object °¡·Î, ¼¼·Î, ³×ÀÓ ¼³Á¤
        document.write('<param name="movie" value="'+file+'" />');
        document.write('<param name="quality" value="'+quality+'" />');
        //document.write('<param name="wmode" value="transparent" />');  //Åõ¸íÀÏ°æ¿ì »ç¿ë
        document.write('<param name="bgcolor" value="'+bgcolor+'" />');
        document.write('<embed src="'+file+'" quality="'+quality+'"bgcolor="'+bgcolor+'" width="'+width+'" height="'+height+'" name="'+title+'" type="application/x-shockwave-flash" />');
        document.write('</object>')
}