/*****************************************************************************************************/
/*                                                                                                   */
/*                                      'LOGIN' CONTROL PANEL                                        */          
/*                                                                                                   */
/*****************************************************************************************************/

var LoginObject = new Object();


function initLoginPanel(){
	if (document.forms['login_form'] == null){
		return;	
	}
	
	LoginObject.info = new DEALER_LOGIN_GINFO(this);
	LoginObject.info.init();
	LoginObject.info.initCreate();
}





/*****************************************************************************************************/
/*                                                                                                   */
/*                                         FUNCTION VALIDATION                                       */          
/*                                                                                                   */
/*****************************************************************************************************/
function validateLogin(){
	if (LoginObject != null){
		LoginObject.info.validate();
	}
}