function playflash(file,width,height,bgcolor,quality,name){
        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('<param name="bgcolor" value="'+bgcolor+'" />');
        document.write('<embed src="'+file+'" quality="'+quality+'" wmode="transparent" bgcolor="'+bgcolor+'" width="'+width+'" height="'+height+'" name="'+name+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
        document.write('</object>')
}


function playmovie(file,width,height,bgcolor,quality,name){
       document.write('<object classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" width="'+width+'" height="'+height+'" id="'+name+'">');  //ÇÃ·¡½¬ÇÃ·¹ÀÌ¾î ¹öÀüÀÌ ÀÌÀü¹öÀüÀÏ°æ¿ì ¹öÀü 8À» º¯°æ
	   document.write('<param name="Filename" value="' + file + '">');
	   document.write('<param name="AutoStart" value="1">');
	   document.write('<param name="ShowStatusBar" value="0">');
	   document.write('<param name="ShowMarkers" value="0">');
	   document.write('<param name="ShowGotoBar" value="0">');
	   document.write('<param name="ShowAudioControls" value="-1">');
	   document.write('<param name="ShowDisplay" value="0">');
	   document.write('<param name="ShowTracker" value="-1">');
	   document.write('<param name="ShowControls" value="0">');
	   document.write('<param name="ControlType" value="2">');
	   document.write('<param name="InvokeURLs" value="-1">');
	   document.write('<param name="BufferingTime" value="10">');
	   document.write('<param name="Loop" value="100">');
	   document.write('</object>')
}




