function Embed(p_id,m_src,m_width,m_height) {
  var flashContent = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="' + m_width + '" height="' + m_height + '" id="' + p_id + 'Embed">\n';
  flashContent += '<param name="movie" value="' + m_src + '" />\n';
  flashContent += '<param name="quality" value="high" />\n';
  flashContent += '<param name="settings" value="hide" />\n';
  //flashContent += '<param name="wmode" value="transparent" />\n';
  flashContent += '<param name="allowFullScreen" value="true" />\n';
  flashContent += '<embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="' + m_width + '" height="' + m_height + '" name="' + p_id + '" src="' + m_src + '" quality="high" settings="hide" allowFullScreen="true" />\n';
  flashContent += '</object>\n';

  if (jQuery.browser.ie) {
  		jQuery().css({"height" : ""})
  }
  
  jQuery("#" + p_id).html(flashContent);  
}