function launchFLV(flvTitle, flvURL, flvWidth, flvHeight) {
	var flvDomain = "http://www.blakeanthonyjohnson.com";
	var flvPlayer = "http://www.blakeanthonyjohnson.com/files/FlowPlayer/FlowPlayer.swf";

	var flvWindow = window.open('', "flvWin", "width=" + flvWidth +", height=" + flvHeight + ",scrollbars=no, location=no, menubar=no, statusbar=no, toolbar=no, resizable=no");
	flvWindow.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><meta http-equiv="Cache-Control" content="no-cache" /><meta http-equiv="Expires" content="0" /><meta http-equiv="Pragma" content="no-cache" /><title>Blake Anthony Johnson Presents: ' + flvTitle + '</title><style type="text/css">html, body {margin: 0px;}</style></head><body><div class="flvPlayer"><object type="application/x-shockwave-flash" width="' + flvWidth + '" height="' + flvHeight + '" data="' + flvPlayer + '" id="FlowPlayer"><param name="movie" value="' + flvPlayer + '" /><param name="allowScriptAccess" value="sameDomain" /><param name="quality" value="high" /><param name="scale" value="noScale" /><param name="wmode" value="transparent" /><param name="flashvars" value="videoFile=' + flvDomain + flvURL + '" /></object></div></body></html>');
	flvWindow.document.close();
	flvWindow.focus();
}