function launchYoutubePlaylist(){
	$('#youTubeGallery').modal(
		{
			containerCss:{
				width			: '786px',
				height			: '480px',
				left			: '50%',
				top				: '50%',
				marginLeft		: '-380px',
				marginTop		: '-340px',
				backgroundColor	: '#000',
				overflow		: 'hidden',
				borderWidth		: '1px',
				borderColor		: '#333',
				borderStyle		: 'solid'
			},
			overlayCss:{
				backgroundColor	: '#000',
				cursor			: 'wait',
				overflow		: 'hidden'
			},
			overlay		: 70,
			close		: false,
			persist		: true,
			onOpen:function (dialog){
				dialog.overlay.fadeIn(
					'slow',
					function () {
						dialog.container.slideDown(
							'slow',
							function () {
								dialog.data.show(); 
								$(".youTubeGallery").show();
								
							}
						);
					}
				);
			}
		}
	);	
	return false;		
}

function closeYoutubePlaylist(){
	$.modal.close();
	return false;
}

