var videoEmbedDialog				= null;
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function doVideoEmbedPane(videoID) {
var url								= "/clientServer/?section=VideoEmbedPane&videoID=" + videoID;
videoEmbedDialog					= document.createElement('DIV');
handleGetComplete					= 'handleStandardGetComplete';
handleDialogClose					= 'closeVideoEmbedPane';
doAjaxPopup('commonDialog',videoEmbedDialog,url,500,300);
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function closeVideoEmbedPane() {
closeAjaxPopup(videoEmbedDialog);
videoEmbedDialog					= null;
}
