function launchTv(video)
{	var width = 520;
	var height = 300;
	var features = ",scrollbars=no,resizable=no,status=no,menubar=no,location=no";
	var left = (screen.width) ? (screen.width-width)/2 : 0;
	var top = (screen.height) ? (screen.height-height)/2 : 0;
	var dimensions = "width="+width+",height="+height+",top="+top+",left="+left;
	
	tv = window.open('video/'+video,name,dimensions+features);
	tv.focus();
}