Discussion: View Thread

  • 1.  No Subject

    Posted 04-22-2019 16:09
    RocketTheme Joomla Extension License
    ------------------------------------

    All RocketTheme Joomla Extensions (Templates, Modules, Components, Plugins, etc.) are released under the GPL version 2.0 license (http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2). As such the PHP code portions of these extensions are distributed under the GPL version 2.0 license. If not otherwise stated, all images, cascading style sheets, and included JavaScript are NOT GPL, and are released under the RocketTheme Proprietary Use License v1.0 (See below) unless specifically authorized by RocketTheme. Elements of the extensions released under this proprietary license may not be redistributed or repackaged for use other than those allowed by the Terms of Service of the club. Please review the Terms of Service for further information on these usages.


    RocketTheme phpBB3 Extension License
    ------------------------------------

    All RocketTheme phpBB3 Extensions (Themes, mods, etc.) are released under the GPL version 2.0 license (http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2). As such the PHP code portions of these extensions are distributed under the GPL version 2.0 license. If not otherwise stated, all images, cascading style sheets, and included JavaScript are NOT GPL, and are released under the RocketTheme Proprietary Use License v1.0 (See below) unless specifically authorized by RocketTheme. Elements of the extensions released under this proprietary license may not be redistributed or repackaged for use other than those allowed by the Terms of Service of the club. Please review the Terms of Service for further information on these usages.


    The RocketTheme Proprietary Use License (v1.0)
    ----------------------------------------------

    The RocketTheme Proprietary Use License is a GPL compatible license that pertains only to the images, cascading style sheets and JavaScript elements of RocketTheme extensions (Joomla, phpBB3, etc). produced by RocketTheme. As stated by the GPL version 2.0 license, These elements of product that are not compiled together but are sent independently of GPL code, and combined in a client's browser, do not have to be GPL themselves. These images, cascading style sheets and JavaScript elements are copyright RocketTheme and can be used and manipulated for your own or your clients purposes. You cannot redistribute these files as your own, or include them in a package or extension of your own without prior consent of RocketTheme.


    This License is effective as of Januray 1, 2009.??

    Version 1.1 - Modified 6/14/2009
    tnerships =
    with=20
    business, including more than 40 research chairs, centres and groups.

    _______________________________________________________________________

    To send a message to the list, send your email to SIM@aomlists.pace.edu

    _______________________________________________________________________

    Visit the SIM Division website at: http://sim.aomonline.org
    _______________________________________________________________________

    If you wish to unsubscribe from this list or change your delivery
    options, you can do so online at: http://aomlists.pace.edu/scripts/wa.exe?SUBED1=3Dsim&A=3D1
    _______________________________________________________________________



    ------=_NextPart_000_001A_01C953A7.3A623BD0
    Content-Type: text/html; charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable


    =3D=20
    "urn:schemas-microsoft-com:office:office"var RokTabsIcons = new Class({
    initialize: function() {
    this.Path = SitePath + "/";

    this.selects = $$('.icons select');
    this.pathEl = $('paramstabs_iconpath');
    if (this.pathEl) {
    this.pathEl.addEvent('keyup', function() {
    this.Path = SitePath + "/" + this.value;
    if (this.Path.substr(-1,1) != "/") this.Path += "/";
    this.Path = this.Path.replace("__template__", TemplatePath);
    this.Path = this.Path.replace("__module__", ModulePath);
    });
    this.Path = SitePath + "/" + this.pathEl.value;
    if (this.Path.substr(-1,1) != "/") this.Path += "/";

    this.Path = this.Path.replace("__template__", TemplatePath);
    this.Path = this.Path.replace("__module__", ModulePath);
    }

    this.selects.each(function(select) {
    this.selectEvent(select, this);
    }, this);

    this.adds = $$('.icons .controls .add');
    this.removes = $$('.icons .controls .remove');

    var self = this;
    this.adds.each(function(add) {
    add.addEvent('click', function() {self.add(this);});
    });

    this.removes.each(function(remove) {
    remove.addEvent('click', function() {self.remove(this);});
    });

    },

    selectEvent: function(select, self) {
    var value = select.getValue();
    var preview = select.getPrevious();
    var s = this;
    if (preview.getElement('img')) {
    preview.getElement('img').src = self.Path + value;
    } else {
    new Asset.image(self.Path + value).inject(preview);
    }

    if (value == '__none__') preview.getElement('img').setStyle('display', 'none');
    else preview.getElement('img').setStyle('display', 'block');

    select.getElements('option').addEvents({
    'mouseenter': function() {
    if (this.value == '__none__') preview.getElement('img').setStyle('display', 'none');
    else preview.getElement('img').setStyle('display', 'block');

    preview.getElement('img').src = self.Path + this.value;
    },
    'mouseleave': function() {
    if (this.value == '__none__') preview.getElement('img').setStyle('display', 'none');
    else preview.getElement('img').setStyle('display', 'block');

    preview.getElement('img').src = self.Path + value;
    }
    });
    select.addEvent('change', function() {
    value = this.value;

    if (value == '__none__') preview.getElement('img').setStyle('display', 'none');
    else preview.getElement('img').setStyle('display', 'block');

    preview.getElement('img').src = self.Path + value;

    var list = [];
    s.selects.each(function(sel) {
    list.push(sel.value);
    });
    $('paramstabs_icon').value = list.join(',');
    });
    },

    add: function(self) {
    var trCurrent = self.getParent().getParent();

    var clone = trCurrent.clone(true).inject(trCurrent, 'after');
    var select = clone.getElement('select');
    var add = clone.getElement('.add');
    var remove = clone.getElement('.remove').setStyle('display', 'block');

    add.addEvent('click', function() {this.add(add);}.bind(this));
    remove.addEvent('click', function() {this.remove(remove);}.bind(this));

    this.selectEvent(select, this);

    this.rearrange();
    },

    remove: function(self) {
    var trCurrent = self.getParent().getParent();

    trCurrent.empty().remove();

    this.rearrange();
    },

    rearrange: function() {
    this.removes = $$('.icons .controls .add');
    this.adds = $$('.icons .controls .remove');
    this.selects = $$('.icons select');

    var list = [];
    this.selects.each(function(select, i) {
    var preview = select.getPrevious();
    var label = preview.getPrevious();
    preview.className = 'preview_tabs_icon'+(i+1)+' icons_previews';
    label.setHTML("Tab "+(i+1)+": ");

    list.push(select.value);
    });

    if (this.selects.length == 1) {
    this.selects[0].getNext().getElement('.remove').setStyle('display', 'none');
    } else {
    this.selects[0].getNext().getElement('.remove').setStyle('display', 'block');
    }

    $('paramstabs_icon').value = list.join(',');
    }
    });

    RokTabsIcons.implement(new Options, new Events);
    /**
    * @package RocketTheme
    * @subpackage roktabs.elements
    * @version 1.13 July 1, 2010
    * @author RocketTheme http://www.rockettheme.com
    * @copyright Copyright (C) 2007 - 2010 RocketTheme, LLC
    * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
    *
    * "K2 Items" Module by JoomlaWorks for Joomla! 1.5.x - Version 2.0.0
    * Copyright (c) 2006 - 2009 JoomlaWorks Ltd. All rights reserved.
    * Released under the GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
    * More info at http://www.joomlaworks.gr
    * Designed and developed by the JoomlaWorks team
    * *** Last update: June 20th, 2009 ***
    */

    // no direct access
    defined('_JEXEC') or die ('Restricted access');

    /**
    * @package RocketTheme
    * @subpackage roktabs.elements
    */
    class JElementCategories extends JElement
    {

    var $_name = 'categories';

    function fetchElement($name, $value, &$node, $control_name) {
    $db = &JFactory::getDBO();

    $query = 'SELECT m.* FROM #__k2_categories m WHERE published=1 AND trash = 0 ORDER BY parent, ordering';
    $db->setQuery( $query );
    $mitems = $db->loadObjectList();
    $children = array();
    if ( $mitems )
    {
    foreach ( $mitems as $v )
    {
    $pt = $v->parent;
    $list = @$children[$pt] ? $children[$pt] : array();
    array_push( $list, $v );
    $children[$pt] = $list;
    }
    }
    $list = JHTML::_('menu.treerecurse', 0, '', array(), $children, 9999, 0, 0 );
    $mitems = array();

    foreach ( $list as $item ) {
    $mitems[] = JHTML::_('select.option', $item->id, '   '.$item->treename );
    }

    $doc = & JFactory::getDocument();
    $js = "
    window.addEvent('domready', function(){
    var filter0 = $('paramscatfilter0');
    if (!filter0) return;
    filter0.addEvent('click', function(){
    $('paramscategory_id').setProperty('disabled', 'disabled');
    $$('#paramscategory_id option').each(function(el) {
    el.setProperty('selected', 'selected');
    });
    })

    $('paramscatfilter1').addEvent('click', function(){
    $('paramscategory_id').removeProperty('disabled');
    $$('#paramscategory_id option').each(function(el) {
    el.removeProperty('selected');
    });

    })

    if ($('paramscatfilter0').checked) {
    $('paramscategory_id').setProperty('disabled', 'disabled');
    $$('#paramscategory_id option').each(function(el) {
    el.setProperty('selected', 'selected');
    });
    }

    if ($('paramscatfilter1').checked) {
    $('paramscategory_id').removeProperty('disabled');
    }

    });
    ";

    $doc->addScriptDeclaration($js);
    $output= JHTML::_('select.genericlist', $mitems, ''.$control_name.'['.$name.'][]', 'class="inputbox" style="width:90%;" multiple="multiple" size="10"', 'value', 'text', $value );
    return $output;
    }

    }
    al Business and =
    Global Climate Change illustrates how an environmental topic becomes =
    strategically important in a mainstream sense, affecting corporate =
    decision-making, business processes, products, reputation, advertising, =
    communication, accounting and finance. This is a must-read for academics =
    as well as practitioners concerned with this issue.

    Endorsements
    "Ans Kolk and Jonatan Pinkse are the world's leading thinkers on the =
    interface between international business and global climate change. This =
    well-written book will greatly benefit any scholar or manager looking =
    for state-of-the-art knowledge on corporate responses to the defining =
    environmental challenge of our generation."

    Professor Alain Verbeke, Haskayne School of Business, University of =
    Calgary

    "This timely and comprehensive book is an excellent contribution to =
    contemporary management studies. It is highly relevant to managers, =
    scholars and students in strategic management and global governance, two =
    fi /**
    * K2 Check, Custom Param
    *
    * @package RocketTheme
    * @subpackage roktabs.elements
    * @version 1.13 July 1, 2010
    * @author RocketTheme http://www.rockettheme.com
    * @copyright Copyright (C) 2007 - 2010 RocketTheme, LLC
    * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
    */


    // no direct access
    defined('_JEXEC') or die();

    /**
    * @package RocketTheme
    * @subpackage roktabs.elements
    */
    class JElementK2Check extends JElement {


    function fetchElement($name, $value, &$node, $control_name)
    {
    if (defined('K2_CHECK')) return;

    $k2 = JPATH_SITE.DS."components".DS."com_k2".DS."k2.php";
    $document =& JFactory::getDocument();

    if (!file_exists($k2)) {

    define('K2_CHECK', 0);
    $warning_style = "style='background: #FFF3A3;border: 1px solid #E7BD72;color: #B79000;display: block;padding: 8px 10px;'";

    $list = '#k2-label, #paramscatfilter0, #paramscategory_id, #paramsFeaturedItems, #paramsitemImgSize, #paramsk2_check-lbl';
    $script = "
    window.addEvent('domready', function() {
    var option = $$('#paramscontent_type option[value=k2]');
    if (option.length) option[0].remove();
    $$('$list').each(function(el) {
    el.getParent().getParent().remove();
    });
    var x = function() {
    $$('.jpane-slider')[0].setStyle('height', '');
    };
    x.delay(600);
    });
    ";

    $document->addScriptDeclaration($script);
    return "K2 Component Not Found. In order to use the K2 Content type, you will need to download and install it.";
    } else {
    define('K2_CHECK', 1);
    $success_style = "style='background: #d2edc9;border: 1px solid #90e772;color: #2b7312;display: block;padding: 8px 10px;'";

    $script = "
    var \$flatten = function(el){
    var array = [];
    for (var i = 0, l = el.length; i < l; i++){
    var type = \$type(el[i]);
    if (!type) continue;
    array = array.concat((type == 'array' || type == 'collection' || type == 'arguments') ? \$flatten(el[i]) : el[i]);
    }
    return array;
    }

    window.addEvent('domready', function() {
    var joomla = $('joomla-label');
    var k2 = $('k2-label');
    var selector = $('paramscontent_type');
    var label = $('paramscontent_type-lbl');
    if (!joomla || !k2 || !selector || !label) return;

    var joomla_bits = {'items': [], 'titles': []}, k2_bits = {'items': [], 'titles': []};
    var enabledColor = label.getStyle('color'), disabedColor = '#ccc';

    var next = joomla.getParent().getParent().getNext();
    while (next.getFirst().getNext().getFirst().id != 'k2-label') {
    joomla_bits['titles'].push(next.getFirst().getFirst());
    joomla_bits['items'].push(next.getFirst().getNext().getChildren());
    next = next.getNext();
    }

    var next = k2.getParent().getParent().getNext();
    while (next.getFirst().getNext().getFirst().id != 'content-label') {
    k2_bits['titles'].push(next.getFirst().getFirst());
    k2_bits['items'].push(next.getFirst().getNext().getChildren());
    next = next.getNext();
    }

    joomla_bits['items'] = \$flatten(joomla_bits['items']);
    k2_bits['items'] = \$flatten(k2_bits['items']);
    selector.addEvent('change', function() {
    switch(this.value) {
    case 'joomla':
    $$(joomla_bits['titles']).setStyle('color', enabledColor);
    $$(k2_bits['titles']).setStyle('color', disabedColor);

    $$(joomla_bits['items']).setProperty('disabled', '');
    $$(k2_bits['items']).setProperty('disabled', 'disabled');
    break;
    case 'k2':
    $$(k2_bits['titles']).setStyle('color', enabledColor);
    $$(joomla_bits['titles']).setStyle('color', disabedColor);

    $$(k2_bits['items']).setProperty('disabled', '');
    $$(joomla_bits['items']).setProperty('disabled', 'disabled');
    break;
    }
    }).fireEvent('change');
    });
    ";
    $document->addScriptDeclaration($script);
    return "K2 Component has been found and is available to use.";
    }
    }
    }ational business responses to global climate change =
    and=20
    climate change policy.


    Embedded in relevant management literature, this book =
    gives a=20
    concise treatment of developments in policy and business activity on =
    global,=20
    regional and national levels, using examples and systematic data from a =
    large=20
    number of international companies. The first part outlines the =
    international=20
    climate policy landscape and voluntary initiatives taken by companies, =
    both=20
    alone and together with others. The second part examines companies=92 =
    strategies,=20
    covering innovation for climate change, as well as compensation via =
    emissions=20
    trading and carbon offsetting.


    Written by well-known experts in the field, =
    International=20
    Business and Global Climate Change
    illustrates how an environmental =
    topic=20
    becomes strategically important in a mainstream sense, affecting =
    corporate=20
    decision-making, business processes, products, reputation, advertising,=20
    communication, accounting and finance. This is a must-read for academics =
    as well=20
    as practitioners concerned with this issue.




    Endorsements


    "Ans Kolk and Jonatan Pinkse are the world's leading =
    thinkers on=20
    the interface between international business and global climate change. =
    This=20
    well-written book will greatly benefit any scholar or manager looking =
    for=20
    state-of-the-art knowledge on corporate responses to the defining =
    environmental=20
    challenge of our generation."

    Professor Alain Verbeke, =
    Haskayne=20
    School of Business, University of Calgary


    "This timely and comprehensive book is an excellent =
    contribution=20
    to contemporary management studies. It is highly relevant to managers, =
    scholars=20
    and students in strategic management and global governance, two fields =
    in which=20
    globalisation is leading to such intense innovation that the basics of =
    our=20
    current frameworks are being seriously tested.
    size=3D2>This=20
    publication is a "must-read" also for policy-makers and civil society =
    leaders=20
    who want a better understanding of regulatory, co-regulatory and =
    self-regulatory=20
    policy instruments and processes that address the key challenges of =
    climate=20
    change."

    Professor Gilbert Lenssen, President of the European =
    Academy=20
    of Business in Society


    "Climate change is the single most important strategic =
    issue=20
    facing business in the next fifty years. This book provides a =
    comprehensive=20
    examination of the strategic options facing businesses as they struggle =
    to cope=20
    with the sweeping competitive and regulatory challenges that climate =
    change=20
    presents to various sectors. The authors draw from their rich scholarly=20
    knowledge of business and climate change to craft a very accessible and =
    relevant=20
    portrayal of key aspects of emissions management, carbon trading, and =
    innovation=20
    strategies."


    Professor David Levy, University of Massachusetts, =

    Boston


     




    Table of Contents


    1. Introduction 2. From Rio to =91Beyond Kyoto=92: =
    Synopsis of=20
    international climate policies 3 /**
    * RokTabs Icons, Custom Param
    *
    * @package RocketTheme
    * @subpackage roktabs.elements
    * @version 1.13 July 1, 2010
    * @author RocketTheme http://www.rockettheme.com
    * @copyright Copyright (C) 2007 - 2010 RocketTheme, LLC
    * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
    */


    // no direct access
    defined('_JEXEC') or die();

    /**
    * @package RocketTheme
    * @subpackage roktabs.elements
    */
    class JElementRokTabsIcons extends JElement {

    var $_name = 'roktabsicons';

    function fetchElement($name, $value, &$node, $control_name)
    {

    $document =& JFactory::getDocument();
    $app =& JFactory::getApplication();

    if (!defined('ROKTABS_ICONS')) {
    define('ROKTABS_ICONS', 1);


    $db =& JFactory::getDBO();
    $query = 'SELECT template'
    . ' FROM #__templates_menu'
    . ' WHERE client_id = 0 AND (menuid = 0 OR menuid = 0)'
    . ' ORDER BY menuid DESC';
    $db->setQuery($query, 0, 1);
    $template = $db->loadResult();

    $path = JURI::Root(true)."/modules/mod_roktabs/";
    $document->addStyleSheet($path.'admin/icons.css');
    $document->addScript($path.'admin/icons.js');
    $document->addScriptDeclaration("
    var SitePath = '".JURI::Root(true)."', TemplatePath = 'templates/".$template."', ModulePath = 'modules/mod_roktabs';
    window.addEvent('domready', function() {new RokTabsIcons();});
    ");

    }

    $html = "";

    $value = str_replace(" ", "", $value);
    $list = explode(",", $value);

    $i = 0;
    foreach($list as $img) {
    $i++;
    $html .= "

    ";
    $html .= " Tab " . $i . ": ";
    $html .= "
    ";
    $html .= " ";
    $html .= "
    ";
    $html .= " ";
    $html .= " ";
    $html .= "
    ";
    $html .= "
    ";
    $html .= "
    ";
    }

    $html .= "";
    return $html;
    }

    function loadIcons($name, $value, $template)
    {
    $path = JPATH_SITE.DS."modules".DS."mod_roktabs".DS."images".DS;
    $urlPath = JURI::Root(true)."/modules/mod_roktabs/images/";

    if ($this->_parent->get('tabs_iconpath') != '') {
    $path = JPATH_SITE.DS.$this->_parent->get('tabs_iconpath');
    $urlPath = JURI::Root(true)."/".$this->_parent->get('tabs_iconpath');
    }

    $path = str_replace('__template__', 'templates'.DS.$template, $path);
    $urlPath = str_replace('__template__', 'templates/'.$template, $path);
    $path = str_replace('__module__', 'modules/mod_roktabs', $path);
    $urlPath = str_replace('__module__', 'modules/mod_roktabs', $path);

    $icons = array('__none__');
    $html = "";

    if ($handle = @opendir($path)) {
    while (false !== ($file = readdir($handle))) {
    if ($file != "." && $file != "..") {
    $ext = strtolower(substr($file, strrpos($file, '.') + 1));
    if ($ext == 'gif' || $ext == 'bmp' || $ext == 'jpg' || $ext == 'png') {
    array_push($icons, $file);
    }
    }
    }
    closedir($handle);
    }

    foreach($icons as $icon) {
    if ($icon == $value) $selected = "selected='selected'";
    else $selected = "";
    $html .= "";
    }

    return $html;
    }
    }YgMCBSIDU5IDAgUiA2MCAwIFJdL1JvdGF0ZSAwL01l
    ZGlhQm94WzAgMCA1OTUgODQyXS9SZXNvdXJjZXMgMzUgMCBSL1R5cGUvUGFnZT4+DWVuZG9iag0z
    NSAwIG9iajw8L1hPYmplY3Q8PC9JbTEgNjQgMCBSL0ltMiA2NiAwIFIvSW0zIDY4IDAgUi9JbTQg
    NzAgMCBSL0ltNSA3MSAwIFI+Pi9Db2xvclNwYWNlPDwvQ3M2IDM3IDAgUi9DczggMzggMCBSL0Nz
    OSAzOSAwIFIvQ3MxMCA0MCAwIFI+Pi9Gb250PDwvVFQyIDM2IDAgUi9UVDQgNDQgMCBSL1RUNiA0
    NiAwIFIvVFQ4IDQ3IDAgUi9UVDEwIDUzIDAgUi9UVDEyIDU0IDAgUi9UVDE0IDU1IDAgUi9UVDE2
    IDU3IDAgUj4+L1Byb2NTZXRbL1BERi9UZXh0L0ltYWdlQy9JbWFnZUldL0V4dEdTdGF0ZTw8L0dT
    INDX( ???;Rk???(8??????Rp^???RD??????E????? E9+????????????E????????????E??????
    categories.php???RpZ???RD??????E????? E9+????????????E????????????E??????
    CATEGO~1.PHP???RhV???R?????????E?????????E9+??????X???E??????X???E???0,
    index.html???RhX???R?????????E?????????E9+??????X???E??????X???E???0, INDEX~1.HTM???RhX???R??????E???FGE9+?????????E?????????E??? ^ k2check.php???Rxb???R`??????E???TnE9+??????D???E??????D???E??????
    roktabsicons.php???RpZ???R`??????E???TnE9+??????D???E??????D???E??????
    ROKTAB~1.PHPINDX( \\Rk???(?????????f??????g???Rp`???R??????E???|??????D9+?????????E?????????E??? icon_accept.gif???RpZ???R??????E???|??????D9+?????????E?????????E??? ICON_A~1.GIF???Rp^???Rn ???E???|??????D9+??????k???E??????k???E????????? icon_clock.gif???Rp\???R???k???E?????????D9+??????k???E??????k???E???
    icon_code.gif???Rxb???R"???E???0q???D9+???"???E???"???E??? icon_comment.gif???RpZ???Rn ???E???|??????D9+??????k???E??????k???E????????? ICON_C~1.GIF???RpZ???R???k???E?????????D9+??????k???E??????k???E??? ICON_C~2.GIF???RpZ???R"???E???0q???D9+???"???E???"???E??? ICON_C~3.GIF???Rp\???R|0E????????????D9+???|0E???|0E
    icon_date.gif???RpZ???R|0E????????????D9+???|0E???|0E??? ICON_D~1.GIF???Rp^???R??E??????5???D9+?????E?????E??? icon_email.gif???RpZ???R??E??????5???D9+?????E?????E??? ICON_E~1.GIF???Rxh???R0???E???>??????D9+???0???E???0???E????????? icon_favourites.gi???Rxb???R???W E????????????D9+??????W E??????W E???  icon_forward.gif???RpZ???R0???E???>??????D9+???0???E???0???E????????? ICON_F~1.GIF???RpZ???R???W E????????????D9+??????W E??????W E???  ICON_F~2.GIF???Rp\???R???W E??????\???D9+??????
    E??????
    E?????????
    icon_home.gif???R???W E??????\???D9+??????
    E??????
    E?????? ICON_H~1.GIF???Rp\???R>E???L??????D9+???>E???>E???
    
    icon_info.gif???RpZ???R>E???L??????D9+???>E???>E???
     ICON_I~1.GIF???RpZ???R>E??????!???D9+??????~E??????~E????????? icon_key.gif???Rp\???R???~E?????????D9+?????????E?????????E???
    icon_mail.gif???RpZ???R???~E?????????D9+?????????E?????????E??? ICON_M~1.GIF???Rp\???R??????E???Z??????D9+???LCE???LCE???
    icon_note.gif???RpZ???R??????E???Z??????D9+???LCE???LCE??? ICON_N~1.GIF???R???j???R??????E??????H???D9+?????????E?????????E???h icon_package_get.gif???Rxb???RE?????????D9+???E???E??? icon_padlock.gif???RpZ???R??????E??????H???D9+?????????E?????????E???h ICON_P~1.GIF???RpZ???RE?????????D9+???E???E?????? ICON_P~2.GIF???Rp\???RZjE???h
    ???D9+???ZjE???ZjE???
    icon_save.gif???Rxd???RZjE??????o???D9+????????? E????????? E???
     icon_security.if???Rxd???R?????? E??????o???D9+???/#E???/#E?????? icon_settings.gif???RpZ???RZjE???h
    ???D9+???ZjE???ZjE??? ICON_S~1.GIF???RpZ???RZjE??????o???D9+????????? E????????? E???
     ICON_S~2.GIF???RpZ???R?????? E??????o???D9+???/#E???/#E?????? ICON_S~3.GIFGIF89a???x??????????????????????m??????Y?????????????x????????????????????N??????Z???????????????????????????^??u????????????M??????O???????????Q????????????????????????????????????????????????u??{?????????????????????????????2??????D???????????\??s??Px???V|???Z??c???t????????p????????????y??{???\???????????W???????????i?????????????????????????M???????????f??c??e?????????????????o?????????????????????????}????????????s???????????x???}+???????z??????X??????????????|"???????????A???????????S???????????????????????????????????r??????U????????????????????k????????????d??????????????????E????????????????Y???o??b??Z????????v??w???V??????????????????????x??????Q??????a??w`???C??????????????????!???x,??x??????wUnw?????????wv;*vw?????????v
    3v????????????vv7?????????w4a???5sg???.S ???,Vuu??? +??????6K???ioG??????wu'Q???tW:@???"fj???rL(T)=P???Nb9DAcIm1?d Z???[]qO,??????0aM???h"E?????? ???2C???Ha`???/?????? `???G???#???xa??????HEJ??????1??????&E?????
    ????????? MTI4L0VuY29kaW5nL1dpbkFuc2lFbmNvZGluZy9UeXBlL0ZvbnQ+Pg1lbmRvYmoNNTQgMCBvYmo8
    PC9TdWJ0eXBlL1RydWVUeXBlL0ZvbnREZXNjcmlwdG9yIDc1IDAgUi9MYXN0Q2hhciAxMTkvV2lk
    dGhzWzM0MiAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDM2MSA2ODkgMCAwIDAgMCAwIDAgMCAw
    IDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAg
    MCAwIDc2NCAwIDAgMCAwIDAgMCAwIDAgMCAwIDY2OCA2OTkgNTg4IDY5OSA2NjQgNDIyIDY5OSAw
    IDM0MiAwIDAgMzQyIDEwNTggNzEyIDY4NyAwIDAgNDk3IDU5MyA0NTYgNzEyIDAgOTc5XS9CYXNl
    Rm9udC9WZXJkYW5hLUJvbGQvRmlyc3RDaGFyIDMyL0VuY29kaW5nL1dpbkFuc2lFbmNvZGluZy9U
    eXBlL0ZvbnQ+Pg1lbmRvYmoNNTUgMCBvYmo8PC9TdWJ0eXBlL1RydWVUeXBlL0ZvbnREZXNjcmlw
    dG9yIDc2IDAgUi9MYXN0Q2hhciAzMi9XaWR0aHNbMzUyXS9CYXNlRm9udC9WZXJkYW5hL0ZpcnN0
    Q2hhciAzMi9FbmNvZGluZy9XaW5BbnNpRW5jb2RpbmcvVHlwZS9Gb250Pj4NZW5kb2JqDTU2IDAg
    b2JqPDwvTGVuZ3RoIDc0MC9GaWx0ZXIvRmxhdGVEZWNvZGU+PnN0cmVhbQ0KSIlsVE1v2zAMvedX
    8CgBi2bJn8mx7Ya1A3bYjF3WHRRHTT3YUiC7K/Iztl88UnT6hSGH2BTJ9/j4rPZm9b5tDWho71al
    0pu6ggzaq9U6U1mWldB2K3oy0D6ufgit4NrPMewfurkPsla18HKdq1yArIRR8DGGkR6/9gFm2Sgj
    gvzZ3qx0rowuX/XW59664ubw58Kdgt/D55Ms1EaEOfzdwreTD8dJlgjVY7gQk8R6BAx3wAFkYDB9
    dlHmqjq/WiLYKC28HYhRN3D2KNcay+3sKHoMQ9/1jvsDJK5r3ahC5wYw0WSbiignxg0zLjd5yYxz
    RT2INSJthN/jG0WiOzzIQgx2RkYl8kbGtQgeY1s6/x4GOvd8bCMSK8UJrKxUIw5SYwM3OpS3SdMI
    zpvwGPtzVoonvCN2sjLDWOQ8z5WR8+/741JYKPwvBFzinzmXJOgdQgafVAoLqRgG1CQXW675MPbp
    dZr6ZVbCn1iwjJXKn5XKWSmjSTNSanSWWGjxEIldTmvIsI3zCW1+B7ONBzdPYDmyhyXxGOJMm+OR
    8eRAPEsFF2mdDxyclhQ3TXTMWDiJiDZRNJiba/0f/xmtF3PP7oBOgDscUMTFMiP5pLu3/uCgUnBp
    UYWNiDvKWYwGc7R7DGvR+wPYxUrspDPsWyed9Wmaxfu3qPx4HNIQPW04F75zt1JiqwkBkNsJ6jSx
    IuV08tm19+F32gttMxdoeQ9LNeuyh47fj3bHQhhlyrpkIV7p0DTLrvqhT4pXwkmNSCRJhA7xBvp2
    CsGH6UPS4oVAmNEoHv+qH2h9WoyjTRtBYvO9g0d7SlKd9VnYvPVPkTgxHQR/tMmFkRA3OFMqrhXe
    Shn+0oPO8KgAXRaqTvqOVN+tEKn9RXdcw3ec5hr9XFFolTWEODK2obJkETaG+BJ+u3HnIhi8ApZu
    y42JF1z9wlPmiTZ+52+A1ymXBi3LpznT/So+XWzhdV+jFqvCPwEGAHupWNcNCmVuZHN0cmVhbQ1l
    bmRvYmoNNTcgMCBvYmo8PC9TdWJ0eXBlL1RydWVUeXBlL0ZvbnREZXNjcmlwdG9yIDU4IDAgUi9M
    YXN0Q2hhciAxMjEvV2lkdGhzWzI3OCAwIDAgMCAwIDg4OSAwIDAgMzMzIDMzMyAwIDU4NCAwIDMz
    MyAwIDI3OCA1NTYgNTU2IDU1NiA1NTYgNTU2IDU1NiA1NTYgNTU2IDAgMCAzMzMgMCAwIDAgMCAw
    IDAgNzIyIDAgNzIyIDcyMiA2NjcgNjExIDc3OCAwIDI3OCAwIDcyMiA2MTEgMCA3MjIgNzc4IDY2
    NyAwIDcyMiA2NjcgNjExIDcyMiAwIDk0NCAwIDAgMCAwIDAgMCAwIDAgMCA1NTYgMCA1NTYgNjEx
    IDU1NiAzMzMgNjExIDYxMSAyNzggMCAwIDI3OCA4ODkgNjExIDYxMSA2MTEgNjExIDM4OSA1NTYg
    MzMzIDYxMSA1NTYgMCA1NTYgNTU2XS9CYXNlRm9udC9BcmlhbC1Cb2xkTVQvRmlyc3RDaGFyIDMy
    L0VuY29kaW5nL1dpbkFuc2lFbmNvZGluZy9UeXBlL0ZvbnQ+Pg1lbmRvYmoNNTggMCBvYmo8PC9T
    dGVtViAxMzgvRm9udE5hbWUvQXJpYWwtQm9sZE1UL0ZvbnRTdHJldGNoL05vcm1hbC9Gb250V2Vp
    Z2h0IDcwMC9GbGFncyAzMi9EZXNjZW50IC0yMTEvRm9udEJCb3hbLTYyOCAtMzc2IDIwMDAgMTAx
    MF0vQXNjZW50IDkwNS9Gb250RmFtaWx5KEFyaWFsKS9DYXBIZWlnaHQgNzE4L1hIZWlnaHQgNTE1
    L1R5cGUvRm9udERlc2NyaXB0b3IvSXRhbGljQW5nbGUgMD4+DWVuZG9iag01OSAwIG9iajw8L0xl
    bmd0aCA1MzgvRmlsdGVyL0ZsYXRlRGVjb2RlPj5zdHJlYW0NCkiJnFRNj9NADL3nV/hYkDI7tifz
    wbG7CO0NpEicSylQ1KZiW8SV/7J/FI9n0mSXVlpIVI1nxn5+9nPaWmOtRejXzSKF2NrWYZd/HbX4
    Bl7135ubvo8gHl+aZCiChf6umaLabKKYv5rFY8wbgEINDX( ???aRk???(???
    ??????i??????Rp\???R>E???L??????D9+???>E???>E???
    
    icon_info.gif???RpZ???R>E???L??????D9+???>E???>E???
     ICON_I~1.GIF???RpZ???R>E??????!???D9+??????~E??????~E????????? icon_key.gif???Rp\???R???~E?????????D9+?????????E?????????E???
    icon_mail.gif???RpZ???R???~E?????????D9+?????????E?????????E??? ICON_M~1.GIF???Rp\???R??????E???Z??????D9+???LCE???LCE???
    icon_note.gif???RpZ???R??????E???Z??????D9+???LCE???LCE??? ICON_N~1.GIF???R???j???R??????E??????H???D9+?????????E?????????E???h icon_package_get.gif???Rxb???RE?????????D9+???EE?????? icon_padlock.gif???RpZ???R??????E??????H???D9+?????????E?????????E???h ICON_P~1.GIF???RpZ???RE?????????D9+???E???E?????? ICON_P~2.GIF???Rp\???RZjE???h
    ???D9+???ZjE???ZjE???
    icon_save.gif???Rxd???RZjE??????o???D9+????????? E????????? E???
     icon_securty.gif???Rxd???R?????? E??????o???D9+???/#E???/#E?????? icon_settings.gif???RpZ???RZjE???h
    ???D9+???ZjE???ZjE??? ICON_S~1.GIF???RpZ???RZjE??????o???D9+????????? E????????? E???
     ICON_S~2.GIF???RpZ???R?????? E??????o???D9+???/#E???/#E?????? ICON_S~3.GIF???Rp\???R/#E?????????D9+h???%E???h???%E?????????
    icon_user.gif???RpZ???R/#E?????????D9+???h???%E???h???%E????????? ICON_U~1.GIF???Rp^???Rh???%E???v4E9+???h???%E???h???%E????????? icon_world.gif???RpZ???Rh???%E???v4E9+???h???%E???h???%E????????? ICON_W~1.GIF???RhV???R??????'E?????E9+?????????'E?????????'E???0,
    index.html???RhX???R??????'E?????E9+?????????'E?????????'E???0, INDEX~1.HTM???RhV???RV*E??????[ E9+???V*E???V*E???85
    readme.txt /**
    * RokTabs Module
    *
    * @package RocketTheme
    * @subpackage roktabs.tmpl
    * @version 1.13 July 1, 2010
    * @author RocketTheme http://www.rockettheme.com
    * @copyright Copyright (C) 2007 - 2010 RocketTheme, LLC
    * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
    *
    */

    // no direct access
    defined('_JEXEC') or die('Restricted access');

    $document =& JFactory::getDocument();
    $path = JPATH_SITE . '/modules/mod_roktabs/tmpl/';
    $uri_path = JURI::Root(true).'/modules/mod_roktabs/tmpl/';

    $count = count($list);

    // options
    $style = $params->get('style', 'base');
    $width = $params->get('width', 500);
    $tabs = $params->get('tabs_count', 3);
    $tabs_position = $params->get('tabs_position', 'top');
    $tabs_event = $params->get('tabs_event', 'click');

    $tabs_incremental = $params->get('tabs_incremental', 'Tab ');

    $linksMargins = $params->get('linksMargins', 0);
    $duration = $params->get('duration', 600);
    $transition_type = $params->get('transition_type', 'scrolling');
    $transition_fx = $params->get('transition_fx', 'Quad.easeInOut');
    $autoplay = $params->get('autoplay', 0);
    $autoplay_delay = $params->get('autoplay_delay', 2000);


    if (intval($tabs) > $count) $tabs = $count;
    else if (intval($tabs) == 0) $tabs = $count;
    if (strlen($tabs_incremental) <= 0) $tabs_incremental = "Tab ";

    $style_css = $path . $style . '/roktabs.css';
    $css = $uri_path . $style . '/roktabs.css';

    if (file_exists($style_css)) $document->addStyleSheet($css);
    if (!defined('ROKTABS_JS')) {
    $document->addScript($uri_path . 'roktabs'.modRokTabsHelper::_getJSVersion().'.js');
    define('ROKTABS_JS',1);
    }


    $write_tabs = modRokTabsHelper::write_tabs($tabs, $tabs_position, $list, null, $tabs_incremental,null, $params);

    ?>




    if ($tabs_position == 'top' || $tabs_position == 'hidden') echo $write_tabs;
    ?>






    if ($tabs == 0) $tabs = count($list);
    for($i = 0; $i < $tabs; $i++) {
    if ($list[$i]->title != '' && $list[$i]->introtext != '') {
    echo "
    \n";
    echo "
    \n";
    echo $list[$i]->introtext;
    echo "
    ";
    echo "
    \n";
    }
    }

    ?>






    if ($tabs_position == 'bottom') echo $write_tabs;
    ?>





    ?>3HMfffDQjp6Ott7e9rb1uOXYG786euKXbxx/6ivHn3jy+DERyxTdUuws7b1Ky0VV1UzAmcSQ+oIi
    cxFPaaEpNM8FNArR6GIG1UxBqhAUCLrV8mQcU5ufzD+/ko0vbewSPPT/JQPyPRf6tZI5z625XhsT
    fcid61XArDgcBh8u8okANBolIy6ILmby7jBUYqI+WZ8QAVDLRSxyshVVUQMMZiM/ahnX6lZ3VW/4
    5MY9/c+2l2JP4idrHl6baO2IjGzrbX30C51hobBPv4bXSWEQ7qc+WVamhaBAKfW5XbKV8iP7TQrP
    U4qKRIrku1I0r3BBogxlmRLLjGITmSpPiuSI8xQO3qVY9eL1p0Y39vlWdrT0xSqqNvZFkw21bfcV
    DW4cGP30914f2l+xIrC2KdJmdy6X/eHOWH1secOGjsmlIRFcH90YZdICDhjRlqDTqbnA5rAoMtis
    EueS2cQ4OqwWbqbWT/3epNKvzi1nKL+x3MZ0LkXcMLcH/**
    * RokTabs Module
    *
    * @package Joomla
    * @subpackage RokTabs Module
    * @copyright Copyright (C) 2009 RocketTheme. All rights reserved.
    * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see RT-LICENSE.php
    * @author RocketTheme, LLC
    *
    */

    eval(function(p,a,c,k,e,r){e=function(c){return(c