// JavaScript Document
function bokFlash(fName,fWidth,fHeight,fId,fVars) {
 if (navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length) {
  document.write("<embed type=\"application/x-shockwave-flash\" src=\"" + fName + "\" vspace=\"" + "0" + "\" width=\"" + fWidth + "\" height=\"" + fHeight + "\"  id=\"" + fId + "\" name=\"" + fId + "\" wmode=\"transparent" + "\" ");
  if (fVars != "") {
   document.write("flashvars=\"" + fVars + "\"");
  }
  document.write("/>");
 } else {
  document.write("<object id=\"" + fId + "\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" vspace=\"" + "0" + "\" width=\"" + fWidth + "\" height=\"" + fHeight + "\">");
  document.write("<param name=\"MMplayerType\" value=\"ActiveX\" />");
  document.write("<param name=\"movie\" value=\"" + fName + "\" />");
  document.write("<param name=\"wmode\" value=\"transparent"+ "\" >");
  if (fVars != "") {
   document.write("<param name=\"flashvars\" value=\"" + fVars + "\" />");
  }
  document.write("</object>");
 }
}