/* DEALER LOGIN FUNCTIONS -----------------------------------------------------*/ function login() { var loginForm = ''; loginForm = '
'; // loginForm = ''; loginForm += '
'; loginForm += '

Se require ingresar a su cuenta

'; /* loginForm += '
username
'; loginForm += ' '; loginForm += '
password
'; loginForm += '
'; loginForm += ' '; */ loginForm += '


Por favor haga click en el botón de ingreso para ser automáticamente ingresado al portal de distribuidores.

'; loginForm += ' '; loginForm += '
'; loginForm += '
'; jQuery('
').appendTo('body').css({ opacity:0, visibility:'visible', background:'#000', zIndex:100, height:jQuery(document).height(), width:jQuery('body').width(), top:0, left:0, position:'absolute' }).click(closeLogin); jQuery('
').appendTo('body').css({ left:(970/2)-150 }).html(loginForm); jQuery('#dealerMask').animate({ opacity:.7 }, 500, function() { jQuery('#overlay').animate({ width:300, height:10 }).animate({ height:170 }).find('#login').focus(); }); return true; } function closeLogin() { jQuery('#overlay').animate({ height:0 }, function() { jQuery('#dealerMask').animate({ opacity:0 }, 500, function() { jQuery(this).remove(); }); jQuery('#overlay').remove(); }); return true; }