function showLogin() {
$(function(){

    $('#login').dialog({
                autoOpen: true,
                show: 'slide',
                hide: 'slide',
                width: 380,
                height: 250,
                buttons: {
                        "Закрыть окно" : function() {
                                $(this).dialog("close");
                        },
                        "Регистрация": function() {
                                document.location='http://forwebz.com/index.php?do=register';
                        },
                        "Забыл пароль": function() {
                                document.location='http://forwebz.com/index.php?do=lostpassword';
                        }
                }
        });
});
}
