    	function LightboxDelegate(url,caption, width, height, video) {
    		var objLink = document.createElement('a');
    		objLink.setAttribute('href',url);
    		objLink.setAttribute('rel','lightbox');
    		objLink.setAttribute('title',caption);
    		objLink.setAttribute('width',width);
    		objLink.setAttribute('height',height);
    		objLink.setAttribute('video',video);
    		Lightbox.prototype.start(objLink);
    	};
        function play_video_caption(video, caption) {
	    	LightboxDelegate(video + '.swf', caption);
	    };
        function play_video(video) {
            var caption = '';
			var width = 480;
			var height = 282;
			var strVideo = '';
            switch (video){
                case 'meetings':
                    caption = '<b>Meeting &amp; Events</b><br />ENLIVEN your audience with exceptional creativity.';
					width = 480;
					height = 282;
					strVideo = 'Meetings_Events_FINAL_8mb';
                    break;
                case 'video':
                    caption = '<b>Video</b><br />IGNITE your audience with truly moving and inspiring images.';
					width = 480;
					height = 282;
					strVideo = 'Videos_FINAL_8mb';
                    break;
                case 'print':
                    caption = '<b>Print &amp; Electronic Communications</b><br />REACH your audience with unique print and electronic communications.';
					width = 480;
					height = 282;
					strVideo = 'Print_FINAL_8mb';
                    break;
                case 'community':
                    caption = '<b>Community &amp; Team Building</b><br />TOUCH hearts and minds with innovative, cause-related marketing.';
					width = 480;
					height = 282;
					strVideo = 'Charity_FINAL_8mb';
                    break;
                default : caption = '';
            };
			if (strVideo != '') {
				LightboxDelegate('videoPlayer.swf', caption, width, height, strVideo);
			}
	    };

