function openMovie(movie, title)
{
	if (!title)
		title = 'CANYON TV';
	openShadowbox('video/'+movie+'.html','iframe',title,480, 270);
}

var openShadowbox = function(content, player, title, width, height){
   Shadowbox.open({
       content:    content,
       player:     player,
       type:    	player,
       title:      title,
       width: 		width,
       height:		height
   });
};
