//------------------------
// 도메인
//------------------------
//document.domain='http://www.mek-ics.com//';


function playflash(file,width,height,bgcolor,quality,name){
        document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+width+'" height="'+height+'" id="'+name+'">');  //플래쉬플레이어 버전이 이전버전일경우 버전 8을 변경
        document.write('<param name="allowScriptAccess" value="always" />');
		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+'" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="https://www.macromedia.com/go/getflashplayer" />');
        document.write('</object>')
}

function playvideo(src)
{
document.write("<object ID='MPlayer' CLASSID='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6' WIDTH=320 HEIGHT=240 VIEWASTEXT>");
document.write("<PARAM NAME='Url' VALUE='" + src + "'>");
document.write("<PARAM NAME='captioningID' value='captions'>");
document.write("<PARAM NAME='SAMIFileName' value=''>");
document.write("<PARAM NAME='autoStart' value='True'>");
document.write("<PARAM NAME='PlayCount' VALUE=1>");
document.write("<param NAME='stretchToFit' VALUE='true'>");
document.write("<PARAM NAME='uimode' VALUE=none>");
document.write("<param NAME='TransparentAtStart' VALUE='1'>");
document.write("<param name='fullScreen' value='0'>");
document.write("<param name='mute' value='false'>");
document.write("<PARAM NAME='EnableContextMenu' VALUE='0'>");
document.write("</object>");
}

function playaudio(src)
{
document.write("<object ID='MPlayer' CLASSID='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6' WIDTH=320 HEIGHT=240 VIEWASTEXT>");
document.write("<PARAM NAME='Url' VALUE='" + src + "'>");
document.write("<PARAM NAME='captioningID' value='captions'>");
document.write("<PARAM NAME='SAMIFileName' value=''>");
document.write("<PARAM NAME='autoStart' value='True'>");
document.write("<PARAM NAME='PlayCount' VALUE=1>");
document.write("<param NAME='stretchToFit' VALUE='true'>");
document.write("<PARAM NAME='uimode' VALUE=none>");
document.write("<param NAME='TransparentAtStart' VALUE='1'>");
document.write("<param name='fullScreen' value='0'>");
document.write("<param name='mute' value='false'>");
document.write("<PARAM NAME='EnableContextMenu' VALUE='0'>");
document.write("<PARAM NAME='ShowDisplay' VALUE='0'>");
document.write("</object>");
}


