/******************************************************/
/*  Ricoh Flash Video Player                          */
/*  Ricoh Company, Ltd. All Rights Reserved.          */
/******************************************************/

function RicohFLVPlayer(videofile, width, height) {
  var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
  var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
  var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
  
  if (isIE && isWin && !isOpera) {
    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="rplayer">'+
            '<param name="allowScriptAccess" value="sameDomain" />'+
            '<param name="movie" value="/webtech/wp-content/uploads/rplayer.swf?video='+videofile+'" />'+
            '<param name="quality" value="high" />'+
            '<param name="wmode" value="transparent" />'+
            '<param name="devicefont" value="true" />'+
            '</object>');
  } else {
    document.write('<embed name="rplayer"'+
              'src="/webtech/wp-content/uploads/rplayer.swf?video='+videofile+'"'+
              'quality="high"'+
              'wmode="transparent"'+
              'devicefont="true"'+
              'width="'+width+'" height="'+height+'"'+
              'allowScriptAccess="sameDomain"'+
              'type="application/x-shockwave-flash"'+
              'pluginspage="http://www.macromedia.com/go/getflashplayer"> '+
            '</embed>');
  }
}
