Клуб API Карт

Как сделать чтобы балун был открыт сразу

Пост в архиве.

ЗНАЮ ГДЕ БЫЛА ЭТА ТЕМА, НЕМОГУ НАЙТИ

Вот код поправте пожалуйта . Заранее спасибо

 


            <script src="http://api-maps.yandex.ru/1.1/?key=AM6VgU4BAAAACMt4awIA780MyQIuLHTAxLrlduZ1jbItJN8AAAAAAAAAAAAuapIyjXtdmA5PfQe7nr7SBcgsAA==&modules=pmap&wizard=constructor" type="text/javascript"></script>
            <script type="text/javascript">
                YMaps.jQuery(window).load(function () {
                    var map = new YMaps.Map(YMaps.jQuery("#YMapsID-308")[0]
                    map.setCenter(new YMaps.GeoPoint(44.98051, 53.204889), 16, YMaps.MapType.MAP);
                    map.addControl(new YMaps.Zoom()
                    map.addControl(new YMaps.ToolBar()
                    YMaps.MapType.PMAP.getName = function () { return "Народная"; };
                    map.addControl(new YMaps.TypeControl([
                        YMaps.MapType.MAP,
                        YMaps.MapType.SATELLITE,
                        YMaps.MapType.HYBRID,
                        YMaps.MapType.PMAP
                    ], [0, 1, 2, 3])

                    YMaps.Styles.add("constructor#pmlbmPlacemark", {
                        iconStyle: {
                            href: "http://api-maps.yandex.ru/i/0.3/placemarks/pmlbm.png",
                            size: new YMaps.Point(28, 29),
                            offset: new YMaps.Point(-8, -27)

                        }

                    }

                    map.addOverlay(createObject("Placemark", new YMaps.GeoPoint(44.980746, 53.204051), "constructor#pmlbmPlacemark", "Садформ<br />ул. Суворова, 225, оф. 47 <br/>Телефоны: (8412) 68 45 51")
                    map.openBalloon()
                    function createObject(type, point, style, description) {
                        var allowObjects = ["Placemark", "Polyline", "Polygon"],
                            index = YMaps.jQuery.inArray(type, allowObjects),
                            constructor = allowObjects[(index == -1) ? 0 : index];
                        description = description || "";

                        var object = new YMaps[constructor](point, { style: style, hasBalloon: !!description }
                        object.description = description;

                        return object;

                    }
                }
            </script>