// Container for JavaScript to open browser window for the media player

// MPFolder = location of files related to the media player
MPFolder = "http://cav1.lcg.org/mediaplayer/";

// MPHTMLtemplateFilename = location of html template file for media player
MPHTMLtemplateFilename = "video.html";


function MPpopup (filename, width, height, resizable){
	rnum = (Math.round((Math.random()*1000000)+1));
	padControls = height+0
	theURL = MPFolder+MPHTMLtemplateFilename+'?theFile='+filename+'&wW='+width+'&wH='+padControls;
	winName = 'MP'+rnum;
	extras = 'width='+width+',height='+padControls+',resizable='+1
	window.open(theURL,winName,extras);
}
