// Licensed Materials - Property of IBM
//
// IBM Cognos Products: pps
//
// (C) Copyright IBM Corp. 2005, 2017
//
// US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
var D_ppesAdminPDFPaginationDialog = new C_Dialog( "D_ppesAdminPDFPaginationDialog", "dlgPPESAdminPDFPagination", "hal/../fragments/ppesAdmin/dialogs/" );

/**
 * Shows the dialog.
 * @param {HTMLElement} v_elVisualParent The element of the visual parent of this dialog.
 * @param {String} v_sTitle
 * @param {I_DialogListener} v_oDialogListener
 * @param {String} v_sCurrentValue
 * @type void
 */
D_ppesAdminPDFPaginationDialog.F_Show = function( v_elVisualParent, v_sTitle, v_oDialogListener, v_sCurrentValue, v_sDefaultValue )
{
	/**
	 * @private
	 */
	this.m_sCurrentValue = v_sCurrentValue;
	this.m_sDefaultValue = v_sDefaultValue;
	
	this.M_fnSuper_Show( v_elVisualParent, v_oDialogListener, v_sTitle );
};