var favoritesDialog					= null;

/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function doFavoritesDialog(videoID) {
	if (favoritesDialog != null) {
	return;
	}
var url								= "/clientServer/?section=FavoritesDialog&videoID=" + videoID;
favoritesDialog						= document.createElement('DIV');
handleGetComplete					= 'handleStandardGetComplete';
handleDialogClose					= 'closeFavoritesDialog';
doAjaxPopup('commonDialog',favoritesDialog,url,500,300);
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function closeFavoritesDialog() {
closeAjaxPopup(favoritesDialog);
favoritesDialog						= null;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function submitFavoritesForm(formObj) {
var videoID							= formObj.videoID.value;
var params							= "section=FavoritesDialog&DOFORM=1&videoID="+videoID;
showLoadingMessage();
handlePostComplete					= 'handleFavoritesPostComplete';
postAjaxContent('/clientServer/',params);
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function handleFavoritesPostComplete(success,xmlHTTP) {
responseContainer.innerHTML			= xmlHTTP.responseText;
}