function open_vod(vod_id)
{
	var url = '/Movie/vod_player.php?vod_id=' + vod_id;
	var target = 'HaniMovieVODPlayer';
	var feature = 'width=666,height=530,scrollbars=no,resizeable=no';
	var w = window.open(url, target, feature);
	w.focus();
}

function open_movie_vod(movie_id, vod_type)
{
	var url = '/Movie/vod_player.php?movie_id=' + movie_id + '&vod_type=' + vod_type;
	var target = 'HaniMovieVODPlayer';
	var feature = 'width=687,height=479,scrollbars=no,resizeable=no';
	var w = window.open(url, target, feature);
	w.focus();
}

function show_fullimage(fullimage_url)
{
	window.open('/Movie/photo_viewer.php?f=' + fullimage_url, '_blank', 'top=10,left=10,width=600,height=400,scrollbars=1,resizable=1');
	return false;
}
