function loadVideoFile(url, player_id) {
	wnd = window.open(url, 'video_player', 'width=325, height=245');

	if (wnd.focus)
		wnd.focus();

	return false;
}
