function fubizz_video(name) {
	var leftPos = (screen.availWidth - 580) / 2;
	var topPos = (screen.availHeight - 330) / 2;
	
	url = 'http://fubizz.com/Medium/video.php?name=' + name;
	newwindow = window.open(url, 'name', 'height=330,width=580,location=no,scrollbars=no'+',left='+leftPos+',top='+topPos);
	if (window.focus) {newwindow.focus()}
	return false;
}