function changevideo(newurlvideo) {
  var so = new SWFObject("mpw_player.swf", "swfplayer", "265", "200", "9", "#000000"); // Player loading
  so.addVariable("flv", newurlvideo); // File Name
  so.addVariable("jpg"," "); // Preview photo
  so.addVariable("autoplay","true"); // Autoplay, make true to autoplay else false
  so.addParam("allowFullScreen","true"); // Allow fullscreen, disable with false
  so.addVariable("backcolor","201179"); // Background color of controls in html color code
  so.addVariable("frontcolor","ffffff"); // Foreground color of controls in html color code
  so.write("flvplayer"); // This needs to be the name of the div id
  window.scrollTo(0,350);
}
