﻿
function ShowVideoPlayerColorbox(/*string*/url, /*string*/videoTitle) {
	$.colorbox({ html: '<div class="colorbox-video-container"><div id="colorboxVideoContainer"></div><h2><a href="' + url + '" target="_blank">' + videoTitle + '</a></h2></div>', width: '680px', height: '500px' });
	jwplayer("colorboxVideoContainer").setup({
		flashplayer: "/_js/jwplayer/player.swf",
		file: url,
		height: 384,
		width: 630,
		autostart: true
	});
};

