PHP: <div id="authForm"> <form name="Auth" method="post" action="/auth.php" onsubmit="doAuth(this);"> <span class="caption">Login:</span> <input type="text" name="username"> <span class="caption">Password:</span> <input type="password" name="userpass"> </form> </div> <div id="authFormMessages"> <span class="caption"></span> </div> Обработка формы с помощью jQuery: Code: $('#authForm').bind('submit', function() { var authForm = $(this); $.ajax({ url: '/auth.php', data: authForm.serialize(), success: function(responseText){ $('#authForm').hide(); $('#authFormMessages span').text(responseText); $('#authFormMessages').show(); } }); return false; }); Документацию ты сможешь найти здесь: _http://yandex.ru/yandsearch?text=всплывающее+окно+авторизации
XENOT, у тебя в ready объявлена функция showNew. А вызывать её кто будет? Функцию объяви в другом месте, а вызывай в ready - showNew().