function showPopupVideoOnClick(title,popupUrl){
	var id = "videoDialog";
	
	video = showIframePopup(popupUrl, id, title, 417, 468);

	currentPanelWidget.hideEvent.subscribe(stopVid);
}

function stopVid(){
	var isIE = (navigator.appName=="Microsoft Internet Explorer");
	var iFrameId = 'videoDialogIframe';
	var iFrame = document.getElementById(iFrameId);
			
	if (isIE) {
		var youtubeplayer = window.frames[iFrameId].document.getElementById('video_object');
	} else {
		var youtubeplayer = iFrame.contentDocument.getElementById('video_object'); 
	}

	if(youtubeplayer){
		youtubeplayer.stopVideo();
		youtubeplayer.clearVideo();
	}
	
	video.hide();
}
			
