function newmovie(name, auto) {
  if (auto === undefined) {
    var auto = "false";
  }
  var flashvars = {
    file: "/wp-content/themes/oxbow/videos/" + name + ".flv",
    autostart: auto
  };
  var params = {
    allowscriptaccess: "always",
    allowfullscreen: "true",
    wmode: "transparent"
  };
  swfobject.embedSWF("/wp-content/themes/oxbow/swf/player.swf",
                     "flashcontent",
                     "318",
                     "239",
                     "9.0.0",
                     "",
                     flashvars,
                     params
                    );
	return false;
}
