function showVideo(p_strDivName, p_strFileName, p_strWidth, p_strHeight)
{
   if (document.getElementById(p_strDivName))
   {
      document.getElementById(p_strDivName).innerHTML = "&nbsp;";
      document.getElementById(p_strDivName).innerHTML =
      QT_GenerateOBJECTText_XHTML(p_strFileName , p_strWidth, p_strHeight, '', 'AUTOPLAY', 'TRUE', 'SCALE', 'ToFit',
      'BGCOLOR','#2F2331','KIOSKMODE','True','CONTROLLER','True');
   }
   return true;
}

function showVideo2(p_strDivName, p_strFileName, p_strWidth, p_strHeight, p_video)
{
   if (document.getElementById(p_strDivName))
   {
      /*for (i=0;i<document.getElementById('selMedia').length;i++)
      {
         if (p_video == document.getElementById('selMedia').options[i].value)
         {
            document.getElementById('selMedia').options[i].selected = true;
         }
         else
         {
            document.getElementById('selMedia').options[i].selected = false;
         }
      }*/
      document.getElementById(p_strDivName).innerHTML = "&nbsp;";
      document.getElementById(p_strDivName).innerHTML =
      QT_GenerateOBJECTText_XHTML(p_strFileName , p_strWidth, p_strHeight, '', 'AUTOPLAY', 'TRUE', 'SCALE', 'ToFit',
      'BGCOLOR','#2F2331','KIOSKMODE','True','CONTROLLER','True');
   }
   return true;
}
