function flvViewer( movie, width, height )
{
	playerHeight = height + 22;
	winWidth = width + 15;
	winHeight = playerHeight + 15;
	options = 'left=0, top=0, width='+winWidth+', height='+winHeight+', resizable=no, menubar=no, scrollbars=no'
	popupWindow = window.open( '', '', options );
	popupWindow.focus();
	popupWindow.document.writeln('<html>');
	popupWindow.document.writeln('<head>');
	popupWindow.document.writeln('<title>Movie</title>');
	popupWindow.document.writeln('</head>');
	popupWindow.document.writeln('<body>');
	popupWindow.document.writeln('<object type="application/x-shockwave-flash" data="/toolbox/FlowPlayer.swf" width="'+width+'" height="'+playerHeight+'" id="FlowPlayer">');
	popupWindow.document.writeln('<param name="allowScriptAccess" value="sameDomain" />');
	popupWindow.document.writeln('<param name="movie" value="/toolbox/FlowPlayer.swf" />');
	popupWindow.document.writeln('<param name="quality" value="high" />');
	popupWindow.document.writeln('<param name="scale" value="noScale" />');
	popupWindow.document.writeln('<param name="wmode" value="transparent" />');
	popupWindow.document.writeln('<param name="flashvars" value="config={	videoFile: \'../'+movie+'.flv\', showLoopButton: false, loop: false, showMenu: false }" />');
	popupWindow.document.writeln('</object>');	
	popupWindow.document.writeln('</body>');
	popupWindow.document.writeln('</html>');
	popupWindow.document.close();
}