	$('document').ready(function() {
		$(".openMovieBtn").click(function() {
			openMovie(this.title);
			return false;
		});
	});
	
	function openMovie(theFile)
	{
		var height=625;
		var width=800;
		var newLeft = (window.screen.availWidth - width) / 2;
		var newHeight = (window.screen.availHeight - height) /2;
		var url = "index.cfm/fa/c.openMovie/filename/" + theFile;
		var movieWin = window.open(url,'movieWin','height=' + height + ',width=' + width + ',left=' + newLeft + ',top=' + newHeight + ',menubar=0,status=0,scrollbars=0,directories=0,resizable=1');
		movieWin.focus();
	}

