﻿function jnj_activate_flash(flashPath, width, height, wmode) {
    var flashvars = 'loctitle=' + escape(document.title) + '&locurl=' + escape(document.location.pathname);
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + width + '" height="' + height + '">' +
                     '<param name="movie" value="' + flashPath + '">' +
                     '<param name="quality" value="high">' +
                     '<param name="LOOP" value="false">' +
                     '<param name="wmode" value="' + wmode + '">' +
                     '<param name="flashvars" value="' + flashvars + '">' +
                     '<embed src="' + flashPath + '" ' +
                        'width="' + width + '" ' +
                        'height="' + height + '" ' +
                        'wmode="' + wmode + '" ' +
                        'flashvars="' + flashvars + '" ' +
                        'loop="false" quality="high" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>' +
                 '</object>');
}
