
// ******************************** INSERTAR PLAYER *******************************
// v 1.2
/**
  VURL: ruta al video
  LINK: Link al que se desea linkear el video
  IMAGEN: imagen de preview
  FUENTE: Fuente del video (cuando es una noticia, por ejemplo)
  (no mayor a 4 letras o se descuadra el video.)
**/
function playShow(VURL,LINK,IMAGEN,FUENTE) {

  var w = '409';
  var h = '308';
  var movieUrl = "/prontus_noticias_v2/stat/player/player_video2.swf";
  var flashvars = "VURL=" + VURL
                + "&LINK=" + LINK
                + "&IMAGEN=" + IMAGEN
                + "&FUENTE=" + FUENTE;
  document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
  document.write('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"');
  document.write('  width="'+w+'"');
  document.write('  height="'+h+'"');
  document.write('  id="player_1.5"');
  document.write('  align="middle">');
  document.write('<param name="allowScriptAccess" value="sameDomain" />');
  document.write('<param name="movie" value="' + movieUrl + '" />');
  document.write('<param name="quality" value="high" />');
  document.write('<param name="bgcolor" value="#ffffff" />');
  document.write('<param name="flashvars" value="' + flashvars + '" />');
  document.write('<param name="WMODE" value="TRANSPARENT">');
  document.write('<embed');
  document.write('  src="' + movieUrl + '"');
  document.write('  quality="high"');
  document.write('  bgcolor="#ffffff"');
  document.write('  width="'+w+'"');
  document.write('  height="'+h+'"');
  document.write('  name="player_1.5"');
  document.write('  align="middle"');
  document.write('  allowScriptAccess="sameDomain"');
  document.write('  type="application/x-shockwave-flash"');
  document.write('  pluginspage="http://www.macromedia.com/go/getflashplayer"');
  document.write('  wmode="transparent"');
  document.write('  flashvars="' + flashvars + '"');
  document.write('  />');
  document.write('</object>');
};

/*FIN*/
