// ÇÃ·¡½¬ Ã³¸®
function swf(p,w,h){
    document.write (" <object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='"+w+"' height='"+h+"'> ");
    document.write (" <param name='movie' value='"+p+"'> ");
    document.write (" <param name='quality' value='high'> ");
	document.write (" <param name='menu' value='false'> "); //no menu
    document.write (" <PARAM name='wmode' value='transparent'> ");
    document.write (" <embed src='"+p+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+w+"' height='"+h+"'></embed> ");
    document.write (" </object> ");
}

//µ¿¿µ»ó Ã³¸®

function ShowVod(sfilename, iwidth, ihegiht)
{
        var _showvod = '';

        _showvod = '<object id=mediaplayer classid=clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95 codebase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#version=5,1,52,701 standby=loading microsoft windows media player components... type=application/x-oleobject width='+ iwidth +' height='+ ihegiht +'>'
        _showvod = _showvod + '<param name=filename value='+ sfilename +'>'
        _showvod = _showvod + '<param name=animationatstart value=true>'
        _showvod = _showvod + '<param name=transparentatstart value=true>'
        _showvod = _showvod + '<param name=autostart value=true>'
        _showvod = _showvod + '<param name=showcontrols value=true>'
        _showvod = _showvod + '<param name=width value='+ iwidth +'>'
        _showvod = _showvod + '<param name=height value='+ ihegiht +'>'
        _showvod = _showvod + '</object>'

        document.write(_showvod);
}
