function show_video(video_file) {
	show_video_sized(video_file, 480, 320);
}

function show_video_sized(video_file, width, height) {
	var url = "/templates/default/flash/flowplayer/player.php?video=" + video_file + "&width=" + width + "&height=" + height;
	
	var args = "width="+ width +",height="+ height;
	args += ",resizable"
	
	window.open(url, "video_player", args);
}