/*****************************************************************************************************/
/*                                                                                                   */
/*                                      'RECOVER PASSWORD' CONTROL PANEL                             */          
/*                                                                                                   */
/*****************************************************************************************************/
var RecoverPasswordObject = new Object();


function initRecoverPasswordPanel(){
	if (document.forms['password_recovery_form'] == null){
		return;	
	}
	
	RecoverPasswordObject.info = new RECOVERPASSWORD_GINFO(this);
	RecoverPasswordObject.info.init();
	RecoverPasswordObject.info.initCreate();
}


/*****************************************************************************************************/
/*                                                                                                   */
/*                                         FUNCTION VALIDATION                                       */          
/*                                                                                                   */
/*****************************************************************************************************/
function validateRecoverPassword(){
	if (RecoverPasswordObject.info != null){
		RecoverPasswordObject.info.initServerValidate();
	}
}



