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

Login Required

'; loginForm += '
Please click the login button below to be automatically logged into the Dealer Portal.
'; // loginForm += '
Please e-mail us or call customer service at 574-295-8330 for login information.
'; /* loginForm += '
'; loginForm += '
'; */ loginForm += ' '; // loginForm += '


Please click the login button below to be automatically logged into the Dealer Portal.

'; // 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; }