var homeNotifyDialog				= null;
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function doHomeNotifyDialog(activeAction) {
	if (homeNotifyDialog != null) {
	return;
	}
homeNotifyDialog					= document.createElement('DIV');
handleGetComplete					= 'handleStandardGetComplete';
handleDialogClose					= 'closeHomeNotifyDialog';
doAjaxPopup('commonDialogLong',homeNotifyDialog,activeAction,500,350);
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function closeHomeNotifyDialog() {
closeAjaxPopup(homeNotifyDialog);
homeNotifyDialog					= null;
}
