
function view_video(title, href, width, height) {
	$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'title'			: title,
			'width'			: width,
			'height'		: height,
			'href'			: href,
			'type'			: 'swf',
			'swf'			: {
				'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
	});

}
