<!--
function showAV(avFilePath, avWidth, avHeight)
{	videoPanel.innerHTML = "<object id='mediaPlayer' name=mediaPlayer style=\"BORDER-width:0px;BORDER-style: solid; BORDER-color: '#CCCCCC';\" 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' height='"+avHeight+"' width='"+avWidth+"'>\n<param name='fileName' value=\""+avFilePath+"\" />\n<param name='animationatStart' value=1 />\n<param name='transparentatStart' value=1 />\n<param name='autoStart' value=1 />\n<param name='showControls' value=1 />\n<param name=\"ShowStatusBar\" value=0>\n<param name='loop' value=0 />\n<param name='cache' value=1 />\n<param name='volume' value=0 />\n\n<EMBED type='application/x-mplayer2' pluginspage='http://www.microsoft.com/windows/mediaplayer/en/default.asp' id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1' showcontrols='0' showtracker='-1' cache='true' volume='0' showdisplay='0' showstatusbar=1 src=\""+avFilePath+"\" autostart=0 designtimesp='5311' loop=0 style=\"BORDER-width: 1px; BORDER-style: solid; BORDER-color: '#CCCCCC';\" height='"+avHeight+"' width='"+avWidth+"' />\n</object>"; 
}
function showAudio(avFilePath)
{	videoPanel.innerHTML = "<object id='mediaPlayer' name=mediaPlayer style=\"BORDER-width:0px;BORDER-style: solid; BORDER-color: '#CCCCCC';\" 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' height=68 width=300>\n<param name='fileName' value=\""+avFilePath+"\" />\n<param name='animationatStart' value=1 />\n<param name='transparentatStart' value=1 />\n<param name='autoStart' value=1 />\n<param name='showControls' value=1 />\n<param name=\"ShowStatusBar\" value=1>\n\n<param name='cache' value=1 />\n<param name='volume' value=0 />\n\n<EMBED type='application/x-mplayer2' pluginspage='http://www.microsoft.com/windows/mediaplayer/en/default.asp' id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1' showcontrols='1' showtracker='-1' cache='true' volume='0' showdisplay='0' showstatusbar=1 src=\""+avFilePath+"\" autostart=0 designtimesp='5311' loop=0 style=\"BORDER-width: 1px; BORDER-style: solid; BORDER-color: '#CCCCCC';\" height=68 width=300 />\n</object>"; 
}
//-->