// JavaScript Document

function videoMRMPlayer(videoFile)
{
	var so = new SWFObject("plugins/player/mpw_player.swf", "swfplayer", "293", "165", "9", "#000000"); // Player loading  
    so.addVariable("flv", "../../videos/" + videoFile + ".flv&amp;autoplay=true"); // File Name   
    so.addParam("allowFullScreen","true"); // Allow fullscreen, disable with false  
    so.write("flvplayer1"); // This needs to be the name of the div id
}
