function open_movie_window(width, height, type, autostart, volume) {
	window.open('/movie/movie.cfm?width=' + width + '&height=' + height + '&type=' + type + '&autostart=' + autostart + '&volume=' + volume + '','_movie','location=no,menubar=no,scrollbars=yes,status=yes,resizable=yes,width=' + (width + 50) + ',height=' + (height + 100));
}

function play_movie(width, height, type, autostart, volume, container_name, dir_name) {
	play_movie_img(width, height, type, autostart, volume, container_name, dir_name, "");
}

function play_movie_img(width, height, type, autostart, volume, container_name, dir_name, img_path) {
  var s1 = new SWFObject("/common/js/mediaplayer.swf","mediaplayer",width, height, "7");
  s1.addParam("allowfullscreen","true");
	s1.addVariable("autostart", autostart);
	s1.addVariable("repeat", "true");
  s1.addVariable("volume", volume);
  s1.addVariable("width", width);
  s1.addVariable("height", height);
  s1.addVariable("file", dir_name + type + ".flv");
  if (img_path != "") {
    s1.addVariable("image", img_path);
  }
  else {
    s1.addVariable("image", dir_name + type + ".jpg");
  }
  s1.write(container_name);
}

