веб-мастеру Услуги SEO Статьи Веб-Мастера Доменные имена SEO Tools whois книги веб-мастеру

IPB

Здравствуйте, гость ( Вход | Регистрация )



2 страниц V  1 2 >  
Ответить в эту темуОткрыть новую тему
> скрипт проверки броузера(Internet Explorer) на наличие флеш плеера, нужен скрипт проверки броузера
Leonid
сообщение 11.1.2008, 2:30
Сообщение #1


Прохожий
*

Группа: Пользователи
Сообщений: 1
Регистрация: 11.1.2008
Пользователь №: 493



Помогите Уважаемые!! Нужен скрипт проверки на предмет установлен ли в Internet Explorer (пользователя) adobe flash player 9 или нет, если не установлен то установить его автоматически из корневой папки сайта ( инсталяха будет лежать в корневой папке)
Это мне нужно чтоб использовать готовый проект of line. У меня есть файл adobe flash player 9 (Flash.osx элемент ActiveX)
Буду очень благодарен тому кто ответит.
Спасибо!
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
sashkovishe
сообщение 12.1.2008, 9:42
Сообщение #2


Администратор форума
****

Группа: Администраторы
Сообщений: 392
Регистрация: 3.12.2006
Из: России
Пользователь №: 4



Цитата(Leonid @ 11.1.2008, 3:30) *

Помогите Уважаемые!! Нужен скрипт проверки на предмет установлен ли в Internet Explorer (пользователя) adobe flash player 9 или нет, если не установлен то установить его автоматически из корневой папки сайта ( инсталяха будет лежать в корневой папке)
Это мне нужно чтоб использовать готовый проект of line. У меня есть файл adobe flash player 9 (Flash.osx элемент ActiveX)
Буду очень благодарен тому кто ответит.
Спасибо!

можно взять Adobe Dreamweaver CS3, там при вставки flash в страницу, он сам создает скрипт для определения флеша и последующий дествий – это легкий способ...
или смотрите код:
Код
/*********************************************************************
*
* Macromedia Flash Dispatcher -- a scriptable detector for Flash Player
*
*
* copyright (c) 2000 Macromedia, Inc.
*
*********************************************************************/


/*
* URL of the Flash self-detecting movie ("sniffer").
*
* Reset this if you move the file out of the directory in which the
* document containing the script that calls MM_FlashDispatch() resides.
*/

var MM_FlashSnifferURL = "detectFlash.swf";


/*
* Latest available revisions of the Plug-in.
*/

var MM_latestPluginRevision = new Object();
MM_latestPluginRevision["6.0"] = new Object();
MM_latestPluginRevision["5.0"] = new Object();
MM_latestPluginRevision["4.0"] = new Object();
MM_latestPluginRevision["3.0"] = new Object();
MM_latestPluginRevision["2.0"] = new Object();

/*
* This table must be updated as new versions and revisions of the
* plug-in are released, in support of the 'requireLatestRevision'
* option in MM_FlashDispatch().
*/
//FS 103101 - the 6.0 revision numbers need to be updated once we know the revision numbers will be.
MM_latestPluginRevision["6.0"]["Windows"] = 40;
MM_latestPluginRevision["6.0"]["Macintosh"] = 40;

MM_latestPluginRevision["5.0"]["Windows"] = 42;
MM_latestPluginRevision["5.0"]["Macintosh"] = 41;

MM_latestPluginRevision["4.0"]["Windows"] = 28;
MM_latestPluginRevision["4.0"]["Macintosh"] = 27;
MM_latestPluginRevision["4.0"]["Unix"] = 12;

MM_latestPluginRevision["3.0"]["Windows"] = 10;
MM_latestPluginRevision["3.0"]["Macintosh"] = 10;

MM_latestPluginRevision["2.0"]["Windows"] = 11;
MM_latestPluginRevision["2.0"]["Macintosh"] = 11;


/*
* MM_FlashInfo() -- construct an object representing Flash Player status
*
* Constructor:
*
*    new MM_FlashInfo()
*
* Properties:
*
*    installed        true if player is installed
*                //(undefined if undetectable)//rjw - false by default
*
*    implementation        the form the player takes in this
*                browser: "ActiveX control" or "Plug-in"
*
*    autoInstallable        true if the player can be automatically
*                installed/updated on this browser/platform
*
*    version            player version if installed
*
*    revision        revision if implementation is "Plug-in"
*
* Methods:
*
*    canPlay(contentVersion)    true if installed player is capable of
*                playing content authored with the
*                specified version of Flash software
*
* Description:
*
*    MM_FlashInfo() instantiates an object that contains as much
*    information about Flash Player--whether it is installed, what
*    version is installed, and so one--as is possible to collect.
*
*    Where Flash Player is implemented as a plug-in and the user's
*    browser supports plug-in detection, all properties are defined;
*    this includes Netscape on all platforms and Microsoft Internet
*    Explorer 5 on the Macintosh.  Where Flash Player is implemented
*    as an ActiveX control (MSIE on Windows), all properties except
*    'revision' are defined.
*
*    Prior to version 5, Microsoft Internet Explorer on the Macintosh
*    did not support plug-in detection.  In this case, no properties
*    are defined, unless the cookie 'MM_FlashDetectedSelf' has been
*    set, in which case all properties except 'version' and 'revision'
*    are set.
*
*    This object is primarily meant for use by MM_FlashDispatch(), but
*    may be of use in reporting the player version, etc. to the user.
*/

var MM_FlashControlInstalled;    // is the Flash ActiveX control installed?
var MM_FlashControlVersion;    // ActiveX control version if installed

function MM_FlashInfo()
{
    this.installed = false;

    if (navigator.plugins && navigator.plugins.length > 0)
    {
    this.implementation = "Plug-in";
    this.autoInstallable = false;    // until Netscape SmartUpdate supported

    // Check whether the plug-in is installed:

    if (navigator.plugins["Shockwave Flash"])
    {
        this.installed = true;

        // Get the plug-in version and revision:

        var words =
        navigator.plugins["Shockwave Flash"].description.split(" ");

        for (var i = 0; i < words.length; ++i)
        {
        if (isNaN(parseInt(words[i])))
        continue;

        this.version = words[i];
        

        this.revision = parseInt(words[i + 1].substring(1));
        }
    }
    else
    {
        this.installed = false;
    }
    }
    else if (MM_FlashControlInstalled != null)
    {
    this.implementation = "ActiveX control";
    this.installed = MM_FlashControlInstalled;
    this.version = MM_FlashControlVersion;
    this.autoInstallable = true;
    }
    else if (MM_FlashDetectedSelf())
    {
    this.installed = true;
    this.implementation = "Plug-in";
    this.autoInstallable = false;
    }

    this.canPlay = MM_FlashCanPlay;
}


/*
* MM_FlashDispatch() -- get Flash Player status and redirect appropriately
*
* Synopsis:
*
*    MM_FlashDispatch(contentURL, contentVersion, requireLatestRevision,
*             upgradeURL, install, installURL, altURL,
*             overridePluginsPage)
*
*    Arguments:
*
*        contentURL            URL of document containing Flash content
*
*        contentVersion        version of Flash software used to
*                    author content
*
*        requireLatestRevision    Boolean indicating whether to require
*                    latest revision of player (plug-in only)
*
*        upgradeURL            document to load if player must be
*                    upgraded to play content and automated
*                    updating is not supported on the user's
*                    browser & platform
*
*        install            Boolean indicating whether to install
*                    if player is not installed
*
*        installURL            document to load if 'install' is true
*                    and automated installation is not
*                    supported on user's browser & platform
*
*        altURL            document to load if 'install' is false
*
*        overridePluginsPage        Boolean indicating whether to set the
*                    PLUGINSPAGE attribute for the embedded
*                    Flash Player sniffer to `installURL'
*        disableAutoInstall        Boolean indicating that the auto-installation
*                    should not occur and that the user will go to the installURL
*                     or to the upgradeURL as specified
                    
*
*    Returns:
*
*        Normally, never returns; changes window.location.
*        Returns with no value when called improperly.
*
* Description:
*
*    MM_FlashDispatch() detects whether the user's Web browser has the
*    Flash plug-in or ActiveX control installed, and what version is
*    installed if so. It then takes appropriate action based on whether
*    Flash Player is installed and is compatible with 'contentVersion':
*    load a document containing Flash content, load alternate content,
*    or oversee the updating or installation of the player.
*
*    There are three possible outcomes of the detection process:
*
*        1. A version of Flash Player has been detected that is
*           suitable for playing the requested content version.
*           MM_FlashDispatch() will load 'contentURL'.
*
*        2. An unsuitable version of Flash Player has been detected.
*           MM_FlashDispatch() will load 'contentURL' if automated
*           updating is supported on the user's browser & platform;
*           otherwise, it will load 'upgradeURL'.
*
*        3. Flash Player is not installed.  If 'install' is set to
*           true, MM_FlashDispatch() will load 'contentURL' if the
*           user's browser supports automated installation; otherwise,
*           it will load 'installURL'.  If 'install' is false,
*           MM_FlashDispatch() will load 'altURL'.
*
*    When script-based detection of Flash Player is not possible,
*    MM_FlashDispatch() attempts to load a Flash movie to carry out
*    the detection. If Flash Player is not installed, there is presently
*    no choice but to let the browser redirect the user via the
*    PLUGINSPAGE attribute of the EMBED tag. In this case, 'install'
*    is ignored, but setting 'overridePluginsPage' to true will
*    set PLUGINSPAGE to 'installURL', overriding its default value
*    (the URL for the Macromedia Flash download center). If this flag
*    is set, 'installURL' must be absolute, not relative.
*/

var MM_FlashPluginsPage = "http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash";

function MM_FlashDispatch(contentURL, contentVersion, requireLatestRevision,
              upgradeURL, install, installURL, altURL,
              overridePluginsPage,disableAutoInstall)
{
    if (disableAutoInstall == null)
    {
    alert("ERROR: MM_FlashDispatch() called with too few arguments.");
    return;
    }


    if (overridePluginsPage && installURL.substring(0, 7) != "http://")
    {
    alert("ERROR: MM_FlashDispatch() called with relative URL" +
        " for PLUGINSPAGE (" + installURL + ")");

    return;
    }


    var player = new MM_FlashInfo();

    if (player.installed == null)
    {
    var sniffer =
        "<EMBED HIDDEN=\"true\" TYPE=\"application/x-shockwave-flash\"" +
          " WIDTH=\"18\" HEIGHT=\"18\"" +
          " BGCOLOR=\"" + document.bgcolor + "\"" +
          " SRC=\"" + MM_FlashSnifferURL +
            "?contentURL=" + contentURL + "?" +
            "&contentVersion=" + contentVersion +
            "&requireLatestRevision=" + requireLatestRevision +
            "&latestRevision=" +
                MM_FlashLatestPluginRevision(contentVersion) +
            "&upgradeURL=" + upgradeURL +
            "\"" +
          " LOOP=\"false\" MENU=\"false\"" +
          " PLUGINSPAGE=\"" +
            (overridePluginsPage ? installURL : MM_FlashPluginsPage) +
            "\"" +
        ">" +
        "</EMBED>";

    document.open();
    document.write("<HTML><HEAD><TITLE>");
    document.write("Checking for the Flash Player");
    document.write("</TITLE></HEAD>");
    document.write("<BODY BGCOLOR=\"" + document.bgcolor + "\">");
    document.write(sniffer);
    document.write("</BODY>");
    document.write("</HTML>");
    document.close();
    }
    else if (player.installed)
    {
    if (player.canPlay(contentVersion, requireLatestRevision))
    {
        location = contentURL;
    }
    else
    {
    if (disableAutoInstall)
    {
    location = upgradeURL;
    }else
    {
        location = player.autoInstallable ? contentURL : upgradeURL;
    }
    }
    }
    else if (install)
    {
    if (disableAutoInstall){
    location = installURL;
    }
    else{
    location = player.autoInstallable ? contentURL : installURL;
    }
    }
    else
    {
    location = altURL;
    }
}


/*
* MM_FlashRememberIfDetectedSelf() -- record that Flash Player detected itself
*
* Synopsis:
*
*    MM_FlashRememberIfDetectedSelf()
*    MM_FlashRememberIfDetectedSelf(count)
*    MM_FlashRememberIfDetectedSelf(count, units)
*
*    Arguments:
*
*        count        length of time in units before re-checking
*                whether content can be played (default: 60)
*
*        units        unit(s) of time to count: "minute(s)," "hour(s)"
*                 or "day(s)" (default: "days")
*
*
* Description:
*
*    This function conditionally sets a cookie signifying that
*    the current document was referred via the Dispatcher using
*    Flash Player self-detection.  It is intended to spare the user
*    whose browser does not support script-based detection from the
*    process of Flash Player self-detection on each visit.
*    
*    The cookie persists for 60 days, or for the amount of time
*    specified by the 'count' and 'units' parameters.
*
*    If cookies are not being accepted, this function is a no-op;
*    the Dispatcher will simply attempt Flash Player self-detection
*    on subsequent visits.
*
*    This function must be called from a script embedded in the
*    document referenced by the 'contentURL' argument to
*    MM_FlashDispatch().
*
*/

function MM_FlashRememberIfDetectedSelf(count, units)
{
    // the sniffer appends an empty search string to the URL
    // to indicate that it is the referrer

    if (document.location.search.indexOf("?") != -1)
    {
    if (!count) count = 60;
    if (!units) units = "days";

    var msecs = new Object();

    msecs.minute = msecs.minutes = 60000;
    msecs.hour = msecs.hours = 60 * msecs.minute;
    msecs.day = msecs.days = 24 * msecs.hour;

    var expires = new Date();

    expires.setTime(expires.getTime() + count * msecs[units]);

    document.cookie =
        'MM_FlashDetectedSelf=true; expires=' + expires.toGMTString();
    }
}


/*
* MM_FlashDemur() -- record user's decision not to install Flash Player
*
* Synopsis:
*
*    MM_FlashDemur()
*    MM_FlashDemur(count)
*    MM_FlashDemur(count, units)
*
*    Arguments:
*
*        count    length of time in units to remember decision
*            (default: 60)
*
*        units    unit(s) of time to count: "minute(s)," "hour(s)"
*            or "day(s)" (default: "days")
*
*    Returns:
*
*        true if successful; false otherwise.
*
* Description:
*
*    MM_FlashDemur() sets a cookie signifying that the user requested
*    that the decision not to install Flash be remembered.
*
*    The cookie persists for 60 days, or for the amount of time
*    specified by the 'count' and 'units' parameters.
*
*    This function may be used as the handler for the 'onClick' event
*    associated with the user's selecting a link to alternate content.
*    If cookies are not being accepted, it will return false; this
*    may be used to control whether the link is followed.
*/

function MM_FlashDemur(count, units)
{
    if (!count) count = 60;
    if (!units) units = "days";

    var msecs = new Object();

    msecs.minute = msecs.minutes = 60000;
    msecs.hour = msecs.hours = 60 * msecs.minute;
    msecs.day = msecs.days = 24 * msecs.hour;

    var expires = new Date();

    expires.setTime(expires.getTime() + count * msecs[units]);

    document.cookie =
    'MM_FlashUserDemurred=true; expires=' + expires.toGMTString();


    if (!MM_FlashUserDemurred())
    {
    alert("Your browser must accept cookies in order to " +
          "save this information.  Try changing your preferences.");

    return false;
    }
    else
    return true;
}


/*
* MM_FlashUserDemurred() -- recall user's decision not to install Flash Player
*
* Synopsis:
*
*    MM_FlashUserDemurred()
*
*    Returns:
*
*        true if a cookie signifying that the user declined to install
*        Flash Player is set; false otherwise.
*
* Description:
*
*    This function is useful in determining whether to set the 'install'
*    flag when calling MM_FlashDispatch().  If true, it means that the
*    user's previous decision not to install Flash Player should be
*    honored, i.e., 'install' should be set to false.
*/

function MM_FlashUserDemurred()
{
    return (document.cookie.indexOf("MM_FlashUserDemurred") != -1);
}


/*********************************************************************
* THE FOLLOWING FUNCTIONS ARE NOT PUBLIC.  DO NOT CALL THEM DIRECTLY.
*********************************************************************/

/*
* MM_FlashLatestPluginRevision() -- look up latest Flash Player plug-in
*                     revision for this platform
*
* Synopsis:
*
*    MM_FlashLatestPluginRevision(playerVersion)
*
*    Arguments:
*
*        playerVersion    plug-in version to look up revision of
*
*    Returns:
*
*        The latest available revision of the specified version of
*        the Flash Player plug-in on this platform, as an integer;
*        undefined for versions before 2.0.
*
* Description:
*
*    This look-up function is only intended to be called internally.
*/

function MM_FlashLatestPluginRevision(playerVersion)
{
    var latestRevision;
    var platform;

    if (navigator.appVersion.indexOf("Win") != -1)
    platform = "Windows";
    else if (navigator.appVersion.indexOf("Macintosh") != -1)
    platform = "Macintosh";
    else if (navigator.appVersion.indexOf("X11") != -1)
    platform = "Unix";

    latestRevision = MM_latestPluginRevision[playerVersion][platform];

    return latestRevision;
}


/*
* MM_FlashCanPlay() -- check whether installed Flash Player can play content
*
* Synopsis:
*
*    MM_FlashCanPlay(contentVersion, requireLatestRevision)
*
*    Arguments:
*
*        contentVersion        version of Flash software used to
*                    author content
*
*        requireLatestRevision    Boolean indicating whether latest
*                    revision of plug-in should be required
*
*    Returns:
*
*        true if the installed player can play the indicated content;
*        false otherwise.
*
* Description:
*
*    This function is not intended to be called directly, only
*    as an instance method of MM_FlashInfo.
*/

function MM_FlashCanPlay(contentVersion, requireLatestRevision)
{
    var canPlay;

    if (this.version)
    {
    canPlay = (parseInt(contentVersion) <= this.version);

    if (requireLatestRevision)
    {
        if (this.revision &&
        this.revision < MM_FlashLatestPluginRevision(this.version))
        {
        canPlay = false;
        }
    }
    }
    else
    {
    canPlay = MM_FlashDetectedSelf();
    }

    return canPlay;
}


/*
* MM_FlashDetectedSelf() -- recall whether Flash Player has detected itself
*
* Synopsis:
*
*    MM_FlashDetectedSelf()
*
*    Returns:
*
*        true if a cookie signifying that Flash Player has detected itself
*        is set; false otherwise.
*
* Description:
*
*    This function is only meant to be called internally.
*/

function MM_FlashDetectedSelf()
{
    return (document.cookie.indexOf("MM_FlashDetectedSelf") != -1);
}

Еще посмотрите здесь http://www.adobe.com/support/flash/detection.html


--------------------
Изображение
Think differently...
ICQ: 6-135-294
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
extimiple
сообщение 18.6.2011, 23:03
Сообщение #3


Прохожий
*

Группа: Пользователи
Сообщений: 1
Регистрация: 18.6.2011
Из: Luxembourg
Пользователь №: 4 935



Английский язык за 1 месяц Программа самоучитель Патент РФ Хит продаж

Английский язык 25 кадр – самостоятельное изучение. Самоучитель Английского языка АнглоКУРС.

Новинка! Хит продаж 2009 года!
Программа нового поколения!
Английский язык быстро, легко и без зубрежки!


Освоить Английский Язык стало намного проще!
Ускоренный мультимедийный курс английского языка
с тройным эффектом запоминания!
Самостоятельное обучение в домашних условиях
с помощью Вашего компьютера.
Разговорный англйский язык.
Всего один диск поможет Вам в кратчайшие сроки
повысить свой уровень знания английского языка

25 кадр видео смотреть | учебник фонетика английского языка | решебник 4 класс английский язык | учебник английского языка 8 класс | грамматика английского языка проверочные работы | учебник английского языка oxford | уроки английского языка 1 класс | интернет магазин учебники английского языка | учебник английского языка 4 класс
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
dmitriyjow
сообщение 24.10.2011, 2:17
Сообщение #4


Прохожий
*

Группа: Пользователи
Сообщений: 2
Регистрация: 19.10.2011
Пользователь №: 5 331



Удаленная работа менеджеров по работе с клиентами!
Вакансии типографии
Менеджер по работе с корпоративными клиентами (удаленно)

Традиционное представление о работе ушло в прошлое с появлением сети Интернет. Вам больше не нужно ездить в офис, тратить время и деньги на дорогу, обеды и офисную одежду. Что можно сделать на расстоянии от работодателя, сидя за домашним компьютером? Написать компьютерную программу, текст для сайта, сценарий для рекламного ролика, сделать сайт. А можно работать удаленно в качестве менеджера. С развитием рынка удаленной работы все большую популярность, наряду с программистами и веб-мастерами, приобретают именно менеджеры по работе с клиентами. Самостоятельная организация труда и рабочего времени, отсутствие адаптации к новым условиям и коллективу – все это бесспорно преимущества данной работы. При желании работать и нацеленности на результат Вы получите хорошую заработную плату и приобретете ценные навыки работы с людьми. Менеджер по работе с корпоративными клиентами (удаленно)

Требования:
- хорошие коммуникативные навыки
- грамотная устная и письменная речь
- стрессоустойчивость
- обучаемость и внимательность
- образование не ниже среднего - специального
- опыт работы в продажах желателен
- Хорошее знание ПК
- Работа удаленная‚ обязательно наличие компьютера и выделенной линии Интернет

Обязанности:
- Поиск новых клиентов (по Вашему желанию).
- формирование заявок.
- размещение заказов не интересных нам, но необходимых для клиентов.
- Ежедневный отчет.

Условия:
• Работа в любом удобном для Вас месте (в т.ч. не проживая в России)
• Работа в графике полного рабочего дня- с 10:00 до 19:00 (по Московскому времени).Время работы большинства организаций - с 9.00 до 19.00 по будним дням.
• Работа без заездов в офис
• Формирование заявок
• Фиксированный процент от выручки на испытательный срок (10000р.)‚ в дальнейшем – условия работы обговариваются с каждым работником отдельно (в удаленном доступе).
• Испытательный срок- 3 месяца.
• Собеседование проводится удаленно, при помощи программы Skype
• Необходимо пройти обучение (удаленно)

тел. +7(495) 6429746, 952-68-43, ICQ:146-718-140, 604642534
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
llfishmen
сообщение 29.10.2011, 3:17
Сообщение #5


Прохожий
*

Группа: Пользователи
Сообщений: 1
Регистрация: 28.10.2011
Из: Россия
Пользователь №: 5 353



Радиоуправляемая игрушка "Летающая рыба" по самым низким ценам в России.
Лучший подарок на др, новый год, любой праздник. Смотрите видео на нашем сайте или на youtube

http://www.youtube.com/watch?v=vIJINiK9azc...player_embedded
У нас вы купите такую рыбку всего за 1550 рублей!


http://www.flyingfishes.ru Ждем вас!

+7 (495) 642-97-46, 604-41-67
+7 (495) 504-60-26, 952-68-43
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
llfishmya
сообщение 7.11.2011, 23:16
Сообщение #6


Прохожий
*

Группа: Пользователи
Сообщений: 3
Регистрация: 7.11.2011
Из: Россия
Пользователь №: 5 382



Радиоуправляемая игрушка "Летающая рыба" по самым низким ценам в России.
Лучший подарок на др, новый год, любой праздник. Смотрите видео на нашем сайте или на youtube
http://www.youtube.com/watch?v=ksHL6A37e6c...feature=related

У нас вы купите такую рыбку всего за 1950 рублей!


http://www.flyingfishes.ru Ждем вас!

+7 (495) 642-97-46, 604-41-67
+7 (495) 504-60-26, 952-68-43
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
llfishmya
сообщение 10.11.2011, 14:41
Сообщение #7


Прохожий
*

Группа: Пользователи
Сообщений: 3
Регистрация: 7.11.2011
Из: Россия
Пользователь №: 5 382



Радиоуправляемая игрушка "Летающая рыба" по самым низким ценам в России.
Лучший подарок на др, новый год, любой праздник. Смотрите видео на нашем сайте или на youtube
http://www.youtube.com/watch?v=ksHL6A37e6c...feature=related

У нас вы купите такую рыбку всего за 1950 рублей!


http://www.flyingfishes.ru Ждем вас!

+7 (495) 642-97-46, 604-41-67
+7 (495) 504-60-26, 952-68-43
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
scandia.v
сообщение 15.11.2011, 17:27
Сообщение #8


Новичок
**

Группа: Пользователи
Сообщений: 8
Регистрация: 23.10.2011
Из: Rossia
Пользователь №: 5 336



За пометку этой темы как Важная Админу форума и его Родным или Близким предусмотрено Особое внимание при заказе нашей услуги.

"Регистрируетесь (получаете при регистрации $20 в качестве подарка! :-)), вступаете в Систему, "покупаете" МАВРО, лежите себе на диване и наблюдаете, как они растут в "цене". Темпами до 20-30% в месяц.
(Депозитные ? ещё быстрее. До 75% в месяц.)

20 и 30% в месяц это примерно в 9 и в 23,5 раз в год, соответственно. К слову сказать. Для тех, кто слаб в арифметике. (Предположительно, естественно. :-))

Хотите "продать" свои МАВРО полностью или частично?
(По новой, уже более высокой цене.)
Да без проблем! В любой момент и без всяких ограничений!
"Продавайте" на здоровье.

Что ещё? Бонусы (ну, премии :-)) будете получать за каждого приведённого вами в Систему нового участника.
20% от его первого взноса и по 10% от всех последующих. Неплохо, правда?

Всё, кажется? Если всей семьёй хотите вступить или трудовым коллективом — можете ячейку создать. Чтоб все свои были. :-))

Да, чуть не забыл! Главное-то! :-))
$20 при регистрации Вам подарят. Просто так. Без каких бы то ни было с Вашей стороны обязательств. Хотите — забирайте и вообще не участвуйте. Дело Ваше."
А теперь читайте
Это вкратце.
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
flyfishesz
сообщение 21.11.2011, 7:29
Сообщение #9


Прохожий
*

Группа: Пользователи
Сообщений: 3
Регистрация: 21.11.2011
Из: Россия
Пользователь №: 5 418



Радиоуправляемая игрушка "Летающая рыба" по самым низким ценам в России.
Лучший подарок на др, новый год, любой праздник. Смотрите видео на нашем сайте или на youtube
http://www.youtube.com/watch?v=ksHL6A37e6c...feature=related

У нас вы купите такую рыбку всего за 1950 рублей!


http://www.flyingfishes.ru Ждем вас!

+7 (495) 642-97-46, 604-41-67
+7 (495) 504-60-26, 952-68-43
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
flyfishesz
сообщение 22.11.2011, 23:12
Сообщение #10


Прохожий
*

Группа: Пользователи
Сообщений: 3
Регистрация: 21.11.2011
Из: Россия
Пользователь №: 5 418



Радиоуправляемая игрушка "Летающая рыба" по самым низким ценам в России.
Лучший подарок на др, новый год, любой праздник. Смотрите видео на нашем сайте или на youtube
http://www.youtube.com/watch?v=ksHL6A37e6c...feature=related

У нас вы купите такую рыбку всего за 1950 рублей!


http://www.flyingfishes.ru Ждем вас!

+7 (495) 642-97-46, 604-41-67
+7 (495) 504-60-26, 952-68-43
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
flyfisheszss
сообщение 6.12.2011, 21:10
Сообщение #11


Новичок
**

Группа: Пользователи
Сообщений: 5
Регистрация: 26.11.2011
Из: Россия
Пользователь №: 5 432



Радиоуправляемая игрушка "Летающая рыба" по самым низким ценам в России.
Лучший подарок на др, новый год, любой праздник. Смотрите видео на нашем сайте или на youtube
http://www.youtube.com/watch?v=ksHL6A37e6c...feature=related

У нас вы купите такую рыбку всего за 1950 рублей!


http://www.flyingfishes.ru Ждем вас!

+7 (495) 642-97-46, 604-41-67
+7 (495) 504-60-26, 952-68-43
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
flyfisheszss
сообщение 18.12.2011, 6:35
Сообщение #12


Новичок
**

Группа: Пользователи
Сообщений: 5
Регистрация: 26.11.2011
Из: Россия
Пользователь №: 5 432



Радиоуправляемая игрушка "Летающая рыба" по самым низким ценам в России.
Лучший подарок на др, новый год, любой праздник. Смотрите видео на нашем сайте или на youtube
http://www.youtube.com/watch?v=ksHL6A37e6c...feature=related

У нас вы купите такую рыбку всего за 1950 рублей!


http://www.flyingfishes.ru Ждем вас!

+7 (495) 642-97-46, 604-41-67
+7 (495) 504-60-26, 952-68-43
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
flyfisheszss
сообщение 22.12.2011, 20:29
Сообщение #13


Новичок
**

Группа: Пользователи
Сообщений: 5
Регистрация: 26.11.2011
Из: Россия
Пользователь №: 5 432



Радиоуправляемая игрушка "Летающая рыба" по самым низким ценам в России.
Лучший подарок на др, новый год, любой праздник. Смотрите видео на нашем сайте или на youtube
http://www.youtube.com/watch?v=ksHL6A37e6c...feature=related

У нас вы купите такую рыбку всего за 1950 рублей!


http://www.flyingfishes.ru Ждем вас!

+7 (495) 642-97-46, 604-41-67
+7 (495) 504-60-26, 952-68-43
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
flyfisheszssr
сообщение 30.12.2011, 19:42
Сообщение #14


Новичок
**

Группа: Пользователи
Сообщений: 9
Регистрация: 30.12.2011
Из: Россия
Пользователь №: 5 520



Радиоуправляемая игрушка "Летающая рыба" по самым низким ценам в России.
Лучший подарок на др, новый год, любой праздник. Смотрите видео на нашем сайте или на youtube
http://www.youtube.com/watch?v=ksHL6A37e6c...feature=related

У нас вы купите такую рыбку всего за 1950 рублей!


http://www.flyingfishes.ru Ждем вас!

+7 (495) 642-97-46, 604-41-67
+7 (495) 504-60-26, 952-68-43
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения
balonbuybi
сообщение 15.2.2012, 21:48
Сообщение #15


Прохожий
*

Группа: Пользователи
Сообщений: 3
Регистрация: 15.2.2012
Из: Россия
Пользователь №: 5 688



покупаем кислородные балоны 2л бу и новые 8-916-639-51-01


--------------------
люблю гелий
Пользователь в офлайнеКарточка пользователяОтправить личное сообщение
Вернуться в начало страницы
+Ответить с цитированием данного сообщения

2 страниц V  1 2 >
Быстрый ответОтветить в эту темуОткрыть новую тему
1 чел. читают эту тему (гостей: 1, скрытых пользователей: 0)
Пользователей: 0

 



- Текстовая версия Сейчас: 22.5.2012, 5:08
^ ВВЕРХ ^

Посетите наши проекты:
Бодибилдинг.info - спорт фитнес клуб
жк телевизор toshiba - Теле-Выбор