[ Поиск ] - [ Пользователи ] - [ Календарь ]
Полная Версия: код данной страницы не работает в ie
Medvedoc
У меня проблема с кодом - он не работает в ie Выдает ошибку: 'show' - объект не поддерживается. Проинспектировав код, нашел строку, на которой ie запнулась.
Вот строка
show = param;


Вот сам код:

<?php
if( !defined( '_VALID_MOS' ) && !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' );
/**
*
*
@version $Id: list_payment_methods.tpl.php 1332 2008-03-28 22:24:05Z thepisu $
*
@package VirtueMart
*
@subpackage templates
*
@copyright Copyright © 2007-2008 soeren - All rights reserved.
*
@license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See /administrator/components/com_virtuemart/COPYRIGHT.php for copyright notices and details.
*
*
http://virtuemart.net
*/

if( $nocc_payments && $cc_payments ) {
echo '<table><tr valign="top"><td width="50%">';
}

if ($cc_payments==true) {
?>
<fieldset><legend><strong><?php echo $VM_LANG->_('PHPSHOP_CHECKOUT_PAYMENT_CC') ?></strong></legend>
<
table border="0" cellspacing="0" cellpadding="2" width="100%">
<
tr>
<
td colspan="2">
<?php $ps_payment_method->list_cc($payment_method_id, false) ?>
</td>
</
tr>
<
tr>
<
td colspan="2"><strong> </strong></td>
</
tr>
<
tr>
<
td nowrap width="10%" align="right"><?php echo $VM_LANG->_('VM_CREDIT_CARD_TYPE'); ?>:</td>
<
td>
<?php echo $ps_creditcard->creditcard_lists( $db_cc ); ?>
<script language="Javascript" type="text/javascript"><!--
writeDynaList( 'class="inputbox" name="creditcard_code" size="1"',
orders, originalPos, originalPos, originalOrder );
//-->
</script>
<?php
$db_cc->reset();
$payment_class = $db_cc->f("payment_class");
$require_cvv_code = "YES";
if(file_exists(CLASSPATH."payment/$payment_class.php") && file_exists(CLASSPATH."payment/$payment_class.cfg.php")) {
require_once(CLASSPATH."payment/$payment_class.php");
require_once(CLASSPATH."payment/$payment_class.cfg.php");
$_PAYMENT = new $payment_class();
if( defined( $_PAYMENT->payment_code.'_CHECK_CARD_CODE' ) ) {
$require_cvv_code = strtoupper( constant($_PAYMENT->payment_code.'_CHECK_CARD_CODE') );
}
}

?> </td>
</
tr>
<
tr valign="top">
<
td nowrap width="10%" align="right">
<
label for="order_payment_name"><?php echo $VM_LANG->_('PHPSHOP_CHECKOUT_CONF_PAYINFO_NAMECARD') ?>:</label>
</
td>
<
td>
<
input type="text" class="inputbox" id="order_payment_name" name="order_payment_name" value="<?php if(!empty($_SESSION['ccdata']['order_payment_name'])) echo $_SESSION['ccdata']['order_payment_name'] ?>" autocomplete="off" />
</
td>
</
tr>
<
tr valign="top">
<
td nowrap width="10%" align="right">
<
label for="order_payment_number"><?php echo $VM_LANG->_('PHPSHOP_CHECKOUT_CONF_PAYINFO_CCNUM') ?>:</label>
</
td>
<
td>
<
input type="text" class="inputbox" id="order_payment_number" name="order_payment_number" value="<?php if(!empty($_SESSION['ccdata']['order_payment_number'])) echo $_SESSION['ccdata']['order_payment_number'] ?>" autocomplete="off" />
</
td>
</
tr>
<?php if( $require_cvv_code == "YES" ) {
$_SESSION['ccdata']['need_card_code'] = 1;
?>
<tr valign="top">
<
td nowrap width="10%" align="right">
<
label for="credit_card_code">
<?php echo vmToolTip( $VM_LANG->_('PHPSHOP_CUSTOMER_CVV2_TOOLTIP'), '', '', '', $VM_LANG->_('PHPSHOP_CUSTOMER_CVV2_TOOLTIP_TITLE') ) ?>:
</
label>
</
td>
<
td>
<
input type="text" class="inputbox" id="credit_card_code" name="credit_card_code" value="<?php if(!empty($_SESSION['ccdata']['credit_card_code'])) echo $_SESSION['ccdata']['credit_card_code'] ?>" autocomplete="off" />

</
td>
</
tr>
<?php } ?>
<tr>
<
td nowrap width="10%" align="right"><?php echo $VM_LANG->_('PHPSHOP_CHECKOUT_CONF_PAYINFO_EXDATE') ?>:</td>
<
td><?php
$ps_html->list_month("order_payment_expire_month", @$_SESSION['ccdata']['order_payment_expire_month']);
echo "/";
$ps_html->list_year("order_payment_expire_year", @$_SESSION['ccdata']['order_payment_expire_year']) ?>
</td>
</
tr>
</
table>
</
fieldset>
<?php
}

if( $nocc_payments && $cc_payments ) {
echo '</td><td width="50%">';
}

if ($nocc_payments==true) {
if ($cc_payments==true) {
$title = $VM_LANG->_('PHPSHOP_CHECKOUT_PAYMENT_OTHER');
}
else {
$title = $VM_LANG->_('PHPSHOP_ORDER_PRINT_PAYMENT_LBL');
}

?>
<fieldset><legend><strong><?php echo $title ?></strong></legend>
<
table border="0" cellspacing="0" cellpadding="2" width="100%">
<
tr>
<!--<
td colspan="2"><?php
$ps_payment_method->list_nocheck($payment_method_id, false);
$ps_payment_method->list_bank($payment_method_id, false);
$ps_payment_method->list_paypalrelated($payment_method_id, false); ?>
</td>-->
<
td colspan="2">
<
script>
function look(type){
param=document.getElementById(type);
if(param.style.display == "none") {
if(show) show.style.display = "none";
param.style.display = "block";
document.getElementById('radio'+ type.substring(3)).checked = true;
show = param;
}else param.style.display = "none"
}
</script>

<
body onload="show = document.getElementById('div1')">
<!--
Первый способ оплаты-->
<
table onclick="look('div1')">
<
tr><td style="padding-top: 5px;" valign="top">
<
input type="radio" value="31" id="radio1" checked="checked" name="payment_method_id" />
</
td>
<
td valign="middle">
<
label for="radio1" style="cursor:hand" onclick="return false;">
<
table><tr><td>
<
img src="../images/foto/oplata/qiwi.jpg" />
</
td><td valign="middle">
<
span style="font-family: Arial; color: #008000; font-size: 12pt;"><strong>QIWI Кошелек</strong></span> - <span style="color: #ff0000; font-size: 10pt;">БЕЗ КОМИССИИ </span>
</
td></tr></table>
</
label>
<
div style="margin-right: 30px; text-align: justify;" style=&{head}; id="div1">
<
br/><span style="font-family: Arial; color: #000; font-size: 10pt;"><strong>Cамый простой и удобный способ оплаты товаров в нашем магазине.</strong> Совершать платежи Вы можете со счета QIWI Кошелька, банковской картой VISA, MasterCard и наличными через терминалы, которые расположены в каждом населенном пункте России - в торгово-развлекательных центрах, магазинах, кинотеатрах и других общедоступных местах. Инструкция по оплате <a style="text-decoration: underline;" href=""><span style="color: #008000; font-size: 10pt;"><strong>здесь</strong></span></a>.
</
div>
</
td></tr></table><br/>
<!--
Конец первого способа оплаты-->

<!--
Второй способ оплаты-->
<
table onclick="look('div2')">
<
tr><td style="padding-top: 5px;" valign="top">
<
input type="radio" value="31" id="radio2" name="payment_method_id" />
</
td>
<
td valign="middle">
<
label for="radio2" style="cursor:hand" onclick="return false;">
<
table><tr><td>
<
img src="../images/foto/oplata/evros.jpg" />
</
td><td valign="middle">
<
span style="font-family: Arial; color: #008000; font-size: 12pt;"><strong>Салоны связи "Евросеть" и "Связной</strong></span> - <span style="color: #ff0000; font-size: 10pt;">БЕЗ КОМИССИИ </span>
</td></tr></table>
</
label>
<
div style="margin-right: 30px; text-align: justify; display: none;" style=&{head}; id="div2">
<
br/><span style="font-family: Arial; color: #008000; font-size: 10pt;">Если у вас нет QIWI Кошелька или возникли трудности при его регистрации,</span><span style="font-family: Arial; color: #000000; font-size: 10pt;"> вы можете оплатить заказ в салонах связи "Евросеть" и "Связной".</span><br/>
<
div style="margin-top: 5px; "><table><tr><td width="10px"></td><td><span style="font-family: Arial; color: #008000; font-size: 10pt;">Номер QIWI Кошелька</span><span style="font-family: Arial; color: #000000; font-size: 10pt;"> - </span><span style="font-family: Arial; color: #ff0000; font-size: 10pt;">12345678</span><span style="font-family: Arial; color: #000000; font-size: 10pt;">, на него необходимо произвести оплату, запишите его.</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">На странице подтверждения заказа указана <span style="font-family: Arial; color: #008000; font-size: 10pt;">итоговая сумма</span>, вместе с доставкой, запишите её.</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">После подтверждения заказа. На ваш электронный адрес поступит письмо с <span style="font-family: Arial; color: #008000; font-size: 10pt;">номером заказа</span>.</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">В ближайшем салоне связи скажите кассиру, что вы хотите пополнить QIWI Кошелек, назовите номер кошелька и сумму.</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">После оплаты напишите нам на email, skype или icq следующее: <span style="font-family: Arial; color: #ff0000; font-size: 10pt;">"Заказ №_ оплачен"</span>. <a style="text-decoration: underline;" href="http://zbm-group.com/index.php?option=com_content&view=article&id=1&Item id=3"><span style="font-family: Arial; color: #008000; font-size: 10pt;">Наши контакты</span></a>.</span></td>
</
tr></table></div></div>
</
td></tr></table><br/>
<!--
Конец второго способа оплаты-->

<!--
Третий способ оплаты-->
<
table onclick="look('div3')">
<
tr><td style="padding-top: 5px;" valign="top">
<
input type="radio" value="31" id="radio3" name="payment_method_id" />
</
td>
<
td valign="middle">
<
label for="radio3" style="cursor:hand" onclick="return false;">
<
table><tr><td>
<
img src="../images/foto/oplata/robo.jpg" />
</
td><td valign="middle">
<
span style="font-family: Arial; color: #000000; font-size: 10pt;">- комиссия от 2%</span>
</
td></tr></table>
</
label>
<
div style="margin-right: 30px; text-align: justify; display: none;" style=&{head}; id="div3">
<
br/><span style="font-family: Arial; color: #000000; font-size: 10pt;">Это сервис, позволяющий интернет-магазинам принимать платежи от клиентов с помощью:</span></span><br/>
<
div style="margin-top: 5px;"><table><tr><td width="10px"></td><td><span style="font-family: Arial; color: #008000; font-size: 10pt;">Банковские карты VISA, MasterCard, Maestro</span> <span style="font-family: Arial; color: #000000; font-size: 10pt;">(Россия, Украина, Беларусь, Казахстан, Азербайджан, Армения, Киргизия, Молдова, Таджикистан, Туркменистан, Узбекистан, Латвия, Литва, Эстония, Австрия, Бельгия, Болгария, Венгрия, Греция, Дания, Израиль, Испания, Люксембург, Нидерланды, Норвегия, Португалия, Румыния, Турция, Финляндия, Франция, Чехия, Швейцария, Швеция)</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #008000; font-size: 10pt;">Электронная валюта</span> <span style="font-family: Arial; color: #000000; font-size: 10pt;">- MoneyMail, LiqPay, RBK Money, Единый кошелек, EasyPay, WebCreds, Деньги@Mail.ru, Z-Payment, TeleMoney. </span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #008000; font-size: 10pt;">Интернет-банк </span><span style="font-family: Arial; color: #000000; font-size: 10pt;">- Альфа-Клик, HandyBank. </span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #008000; font-size: 10pt;">Перевод по системе Контакт.</span></td>
</
tr></table></div></div>
</
td></tr></table><br/>
<!--
Конец третьего способа оплаты-->

<!--
Четвертый способ оплаты-->
<
table onclick="look('div4')">
<
tr><td style="padding-top: 5px;" valign="top">
<
input type="radio" value="31" id="radio4" name="payment_method_id" />
</
td>
<
td valign="middle">
<
label for="radio4" style="cursor:hand" onclick="return false;">
<
table><tr><td>
<
img src="../images/foto/oplata/wm.jpg" />
</
td><td valign="middle">
<
span style="font-family: Arial; color: #008000; font-size: 12pt;"><strong>WebMoney</strong></span> <span style="color: #000000; font-size: 10pt;">- комиссия 0,8%</span>
</
td></tr></table>
</
label>
<
div style="margin-right: 30px; text-align: justify; display: none;" style=&{head}; id="div4">
<
br/><span style="font-family: Arial; color: #000000; font-size: 10pt;">Международная система расчетов и среда для ведения бизнеса в сети. Основана в 1998 г.</span><br/>
<
div style="margin-top: 5px;"><table><tr><td width="10px"></td><td><span style="font-family: Arial; color: #008000; font-size: 10pt;">Номера Кошельков </span> - <span style="font-family: Arial; color: #ff0000; font-size: 10pt;"> R12345678</span> <span style="font-family: Arial; color: #000000; font-size: 10pt;">или</span> <span style="font-family: Arial; color: #ff0000; font-size: 10pt;">Z12345678</span><span style="font-family: Arial; color: #000000; font-size: 10pt;">, на один из них необходимо произвести оплату, запишите их.</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">На странице подтверждения заказа указана <span style="font-family: Arial; color: #008000; font-size: 10pt;">итоговая сумма</span>, вместе с доставкой, запишите её.</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">После подтверждения заказа, произведите оплату на один из указанных выше кошельков.</span></td>
</
tr></table></div></div>
</
td></tr></table><br/>
<!--
Конец четвертого способа оплаты-->

<!--
Пятый способ оплаты-->
<
table onclick="look('div5')">
<
tr><td style="padding-top: 5px;" valign="top">
<
input type="radio" value="31" id="radio5" name="payment_method_id" />
</
td>
<
td valign="middle">
<
label for="radio5" style="cursor:hand" onclick="return false;">
<
table><tr><td>
<
img src="../images/foto/oplata/w1.jpg" />
</
td><td valign="middle">
<
span style="font-family: Arial; color: #008000; font-size: 12pt;"><strong>Единый кошелек</strong></span> <span style="color: #000000; font-size: 10pt;">- комиссия от 3%</span>
</
td></tr></table>
</
label>
<
div style="margin-right: 30px; text-align: justify; display: none;" style=&{head}; id="div5">
<
br/><span style="font-family: Arial; color: #000000; font-size: 10pt;">Это сервис, позволяющий интернет-магазинам принимать платежи от клиентов с помощью:</span><br/>
<
div style="margin-top: 5px;"><table><tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Ukash</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Платежные терминалы (Россия) - <span style="font-family: Arial; color: #1C70D1; font-size: 10pt;">E-port, X-Plat, PinPay Express, MasterPort, Мобил Элемент, Electropay, Comepay, Молния, ЛИДЕР, Свободная касса, Связной, Элекснет по системе HandyBank, Уникасса, АбсолютПлат.</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Платежные терминалы (Украина) - <span style="font-family: Arial; color: #1C70D1; font-size: 10pt;">City-Pay, ПриватБанк.</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">В отделениях Сбербанка России</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Банки Украины: Приватбанк, Правэкс Банк, УкрСибБанк</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">В любом отделении Почты России</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Денежные переводы «Anelik»</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Денежные переводы «Юнистрим»</span></td></tr>
<
tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Банковский перевод в рублях, долларах, гривнах.</span></td></tr>
</
tr></table></div></div>
</
td></tr></table><br/>
<!--
Конец пятого способа оплаты-->

<!--
Шестой способ оплаты-->
<
table onclick="look('div6')">
<
tr><td style="padding-top: 5px;" valign="top">
<
input type="radio" value="31" id="radio6" name="payment_method_id" />
</
td>
<
td valign="middle">
<
label for="radio6" style="cursor:hand" onclick="return false;">
<
table><tr><td>
<
img src="../images/foto/oplata/pp.jpg" />
</
td><td valign="middle">
<
span style="font-family: Arial; color: #000000; font-size: 12pt;"> <span style="color: #000000; font-size: 10pt;">- комиссия 3%</span>
</
td></tr></table>
</
label>
<
div style="margin-right: 30px; text-align: justify; display: none;" style=&{head}; id="div6">
<
br/><span style="font-family: Arial; color: #000; font-size: 10pt;">Международная платежная система, которой пользуются более 100 миллионов людей по всему миру.</span></div>
</
td></tr></table><br/>
<!--
Конец шестого способа оплаты-->

<!--
Седьмой способ оплаты-->
<
table onclick="look('div7')">
<
tr><td style="padding-top: 5px;" valign="top">
<
input type="radio" value="31" id="radio7" name="payment_method_id" />
</
td>
<
td valign="middle">
<
label for="radio7" style="cursor:hand" onclick="return false;">
<
table><tr><td>
<
img src="../images/foto/oplata/nal.jpg" />
</
td><td valign="middle">
<
span style="font-family: Arial; color: #008000; font-size: 12pt;"><strong>Наличными при получении</strong></span>
</
td></tr></table>
</
label>
<
div style="margin-right: 30px; text-align: justify; display: none;" style=&{head}; id="div7">
<
br/><span style="font-family: Arial; color: #000; font-size: 10pt;">Если способ доставки выбрали «Наложенным платежом» или «Самовывоз», тогда выбирайте этот пункт.</span></div>
</
td></tr></table><br/>
<!--
Конец седьмого способа оплаты-->
</
body>
</
td> </tr>
</
table>
</
fieldset>
<?php
}

if( $nocc_payments && $cc_payments ) {
echo '</td></tr></table>';
}
?>


Как сделать, чтобы код правильно отображался и работал в IE? Код отвечает за раскрывающийся текст.



Спустя 1 час, 33 секунды (17.10.2011 - 11:20) redreem написал(а):
покажите исходный код, который получается в браузере, а не из вашего движка.

Спустя 51 минута, 44 секунды (17.10.2011 - 12:12) Medvedoc написал(а):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru-ru" lang="ru-ru">

<head>

<meta
name="w1-verification" content="175822141289" />

<base
href="http://zbm-group.com/Go-through-checkout-process.html" />
<meta
http-equiv="content-type" content="text/html; charset=utf-8" />
<meta
name="robots" content="noindex, follow" />
<meta
name="keywords" content="Оформить заказ, ZBM Group" />
<meta
name="description" content="Оформить заказ | ZBM Group" />

<title>
Оформить заказ | ZBM Group</title>
<link
href="/templates/ja_zeolite/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link
rel="stylesheet" href="/plugins/system/rokbox/themes/light/rokbox-style.css" type="text/css" />
<link
rel="stylesheet" href="/plugins/system/rokbox/themes/light/rokbox-style-ie8.css" type="text/css" />
<link
rel="stylesheet" href="/modules/mod_bannerslider/tmpl/mod_bannerslider.css" type="text/css" />
<script
type="text/javascript" src="/includes/js/joomla.javascript.js"></script>
<script
type="text/javascript" src="/plugins/system/mtupgrade/mootools.js"></script>
<script
type="text/javascript" src="/plugins/system/rokbox/rokbox.js"></script>
<script
type="text/javascript" src="/plugins/system/rokbox/themes/light/rokbox-config.js"></script>
<script
type="text/javascript" src="http://userapi.com/js/api/openapi.js?20"></script>
<script
type="text/javascript" src="/modules/mod_bannerslider/tmpl/mod_bannerslider.js"></script>
<script
type="text/javascript">

window.addEvent('domready', function(){
$$('#vmMainPage .button').each( function(element) {
element.addClass('yagendoo_vm_input_button');
element.removeClass('button');

});
});

var rokboxPath = '/plugins/system/rokbox/';
</script>
<script
src="http://zbm-group.com/components/com_virtuemart/fetchscript.php?gzip=0&subdir[0]=/themes/yagendoo_VaMazing&file[0]=theme.js&subdir[1]=/js&file[1]=sleight.js&subdir[2]=/js/mootools&file[2]=mooPrompt1 .2.js" type="text/javascript"></script>
<script
type="text/javascript">var cart_title = "Корзина";var ok_lbl="Продолжить";var cancel_lbl="Отменить";var notice_lbl="Уведомление";var live_site="http://zbm-group.com";</script>
<link
href="http://zbm-group.com/components/com_virtuemart/fetchscript.php?gzip=0&subdir[0]=/themes/yagendoo_VaMazing/yagendoo_css&file[0]=theme.css&subdir[1]=/themes/yagendoo_VaMazing/yagendoo_css&file[1]=default.css&subdir[2 ]=/js/mootools&file[2]=mooPrompt.css" type="text/css" rel="stylesheet" />


<link
rel="stylesheet" href="http://zbm-group.com/templates/system/css/system.css" type="text/css" />
<link
rel="stylesheet" href="http://zbm-group.com/templates/system/css/general.css" type="text/css" />
<link
rel="stylesheet" href="http://zbm-group.com/templates/ja_zeolite/css/template.css" type="text/css" />
<link
rel="stylesheet" href="http://zbm-group.com/templates/ja_zeolite/css/typo.css" type="text/css" />
<link
rel="stylesheet" href="http://zbm-group.com/templates/ja_zeolite/css/ja.vm.css" type="text/css" />
<link
rel="stylesheet" href="http://zbm-group.com/templates/ja_zeolitecomponents/com_virtuemart/themes/yagendoo_V aMazing/yagendoo_css/default.css" type="text/css" />
<link
rel="stylesheet" href="http://zbm-group.com/templates/ja_zeolitecomponents/com_virtuemart/themes/yagendoo_V aMazing/yagendoo_css/theme.css " type="text/css" />
<!-- Стили для всех версий IE -->
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="/ie8.css" />
<![endif]-->


<script type="text/javascript" src="/templates/ja_zeolite/tabs/addclasskillclass.js"></script>
<script
type="text/javascript" src="/templates/ja_zeolite/tabs/attachevent.js"></script>
<script
type="text/javascript" src="/templates/ja_zeolite/tabs/addcss.js"></script>
<script
type="text/javascript" src="/templates/ja_zeolite/tabs/tabtastic.js"></script>
<script
type="text/javascript" src="https://apis.google.com/js/plusone.js">
{lang: 'ru'}
</script>



<script
type="text/javascript">

var
_gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-25813014-1']);
_gaq.push(['_trackPageview']);

(
function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>


<!-- Put this script tag to the <head> of your page -->
<script type="text/javascript" src="http://userapi.com/js/api/openapi.js?34"></script>

<script
type="text/javascript">
VK.init({apiId: 2480755, onlyWidgets: true});
</script>
<!-- Put this script tag to the <head> of your page -->
<script type="text/javascript" src="http://userapi.com/js/api/openapi.js?34"></script>

<script
type="text/javascript">
VK.init({apiId: 2480755, onlyWidgets: true});
</script>




<script>
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>


<link
rel="stylesheet" type="text/css" media="all" href="/templates/ja_zeolite/tabs/tabtastic.css" />
<script
language="javascript" type="text/javascript">
var
siteurl = 'http://zbm-group.com/';
var tmplurl = 'http://zbm-group.com/templates/ja_zeolite';
</script>

<script
language="javascript" type="text/javascript" src="http://zbm-group.com/templates/ja_zeolite/js/ja.script.js"></script>
<!-- js for dragdrop -->

<!-- Menu head -->

<link href="http://zbm-group.com/templates/ja_zeolite/ja_menus/ja_cssmenu/ja.cssmenu.css" rel="stylesheet" type="text/css" />
<script
src="http://zbm-group.com/templates/ja_zeolite/ja_menus/ja_cssmenu/ja.cssmenu.js" language="javascript" type="text/javascript"></script>
<link
href="http://zbm-group.com/templates/ja_zeolite/css/colors/default.css" rel="stylesheet" type="text/css" />

<!--[if lte IE 6]>
<style type="text/css">
img {border: none;}
</style>
<![endif]-->

<!--[if lte IE 6]>
<link href="http://zbm-group.com/templates/ja_zeolite/css/ie6.php" rel="stylesheet" type="text/css" />

<script type="text/javascript">
window.addEvent ('load', makeTransBG);
function makeTransBG() {
makeTransBg($$('img'));
}
</script>
<![endif]-->
<!--[if gt IE 7]>
<link href="http://zbm-group.com/templates/ja_zeolite/css/ie8.css" rel="stylesheet" type="text/css" />
<![endif]-->

<script type="text/javascript" src="/js/jQuery1.4.1.js"></script>
<script
type="text/javascript">
$(document).ready(function() {
$('a.example').click(function() {
$('p.example').toggle('fast');
return false;
});
});
</script>
<script
type='text/javascript' src='http://yandex.st/jquery/1.4.4/jquery.min.js'></script>
<script
type='text/javascript'>
$(document).ready(function() {
$('#cat p').hide();
$('#cat h4').click(function(){
$(this).next('p').slideToggle('slow');
});
});
</script>

</head>

<body
id="bd" class=" wide fs3" ><div id="ja-li"><h1><a href="http://joomla-master.org" target="_blank" title="joomla 1.6">joomla 1.6</a></h1></div>
<a
name="Top" id="Top"></a>
<ul
class="accessibility">
<li><a
href="/Go-through-checkout-process.html?checkout_last_step=2#ja-content" title="Skip to content">Skip to content</a></li>
<li><a
href="/Go-through-checkout-process.html?checkout_last_step=2#ja-mainnav" title="Skip to main navigation">Skip to main navigation</a></li>
<li><a
href="/Go-through-checkout-process.html?checkout_last_step=2#ja-col1" title="Skip to 1st column">Skip to 1st column</a></li>
<li><a
href="/Go-through-checkout-process.html?checkout_last_step=2#ja-col2" title="Skip to 2nd column">Skip to 2nd column</a></li>
</ul>

<div
id="ja-wrapper">

<!-- BEGIN: HEADER -->
<div id="ja-header" class="clearfix">

<h1
class="logo">
<a
href="/index.php" title="ZBM Group"><span>ZBM Group</span></a>
</h1>


<!---->
<div> ПРИВЕТ </DIV>
<!-- BEGIN: MAIN NAVIGATION -->
<div align=centerid="ja-mainnavwrap">
<div
align=centerid="ja-mainnav" class="clearfix">
<ul
id="ja-cssmenu" class="clearfix">
<li
class="active"><a href="http://zbm-group.com/" class="menu-item0 active first-item" id="menu2" title="ПРОДУКЦИЯ"><span class="menu-title">ПРОДУКЦИЯ</span></a></li>
<li ><a
href="/kitayskie-tampony.html" class="menu-item1" id="menu7" title="ФИТО ТАМПОНЫ"><span class="menu-title">ФИТО ТАМПОНЫ</span></a></li>
<li ><a
href="/kitayskie-plastyri.html" class="menu-item2" id="menu8" title="ПЛАСТЫРИ"><span class="menu-title">ПЛАСТЫРИ</span></a></li>
<li ><a
href="/kapsuly-dlya-zdorovya.html" class="menu-item3" id="menu9" title="КАПСУЛЫ"><span class="menu-title">КАПСУЛЫ</span></a></li>
<li
class="havechild"><a href="/zb-group.html" class="menu-item4" id="menu6" title="ПРОИЗВОДИТЕЛЬ"><span class="menu-title">ПРОИЗВОДИТЕЛЬ</span></a><ul><li ><a href="/sertifikaty.html" class=" first-item" id="menu13" title="Сертификаты"><span class="menu-title">Сертификаты</span></a></li>
</ul></li>
<li
class="havechild"><a href="/oplata.html" class="menu-item5" id="menu18" title="ОПЛАТА"><span class="menu-title">ОПЛАТА</span></a><ul><li ><a href="/tampony-clean-point-beautiful-life-besplatno.html" class=" first-item" id="menu19" title="Как получить товар бесплатно"><span class="menu-title">Как получить товар бесплатно</span></a></li>
</ul></li>
<li ><a
href="/dostavka.html" class="menu-item6" id="menu5" title="ДОСТАВКА"><span class="menu-title">ДОСТАВКА</span></a></li>
<li ><a
href="/o-nas.html" class="menu-item7 last-item" id="menu3" title="О НАС"><span class="menu-title">О НАС</span></a></li>
</ul> </div>

</div>

<!-- END: MAIN NAVIGATION -->

</div>
<!-- END: HEADER -->


<div id="ja-containerwrap-fr">
<div
id="ja-container"><div id="ja-container-inner" class="clearfix">

<!-- BEGIN: CONTENT -->
<div id="ja-mainbodywrap">

<div
id="ja-mainbody" class="clearfix">

<div
id="ja-contentwrapper">

<div
id="ja-botsl2"><div id="ja-botsl-bot2"><div id="ja-botsl-top2" class="clearfix">





<table
border="0"><tr><td><div style="text-align: center; height: 150px; width: 750px; margin-left: -30px; margin-top: -5px; margin-bottom: 5px;" id="ja-box">
<div
class="moduletable">
<div
id="mbs4e9bf08a8252f" class="mod_bannerslider" style="width:750px;height:160px">
<div
class="bs_opacitylayer">
<div
class="bs_contentdiv" style="text-align:center;line-height:160px"><a href="/tampony-clean-point-beautiful-life-besplatno.html"><img src="/images/banners/1.Free.jpg" alt="" style="vertical-align:middle" /></a></div>
<div
class="bs_contentdiv" style="text-align:center;line-height:160px"><a href="/zb-group.html"><img src="/images/banners/2.original.jpg" alt="" style="vertical-align:middle" /></a></div>
<div
class="bs_contentdiv" style="text-align:center;line-height:160px"><a href="/oplata.html"><img src="/images/banners/3.oplata.jpg" alt="" style="vertical-align:middle" /></a></div>
</div>
</div>
<script
type="text/javascript">
new
ContentSlider("mbs4e9bf08a8252f", "fade", 10000, 0, 0);
</script>
</div>

</div></td></tr></table>
</div></div></div>




<!-- BEGIN: CONTENT -->
<div id="ja-botsl2"><div id="ja-botsl-bot2"><div id="ja-botsl-top2" style="margin-top: -10px;" class="clearfix">

<div id="vmMainPage">
<h3>
Оформить заказ</h3><a name="CHECK_OUT_GET_PAYMENT_METHOD"></a>
<div
id="yagendoo_vm_main">
<div
class="yagendoo_vm_checkout_bar">


<table
style="background: url(http://zbm-group.com/components/com_virtuemart/themes/yagendoo_VaMazing/yagendoo_images /checkout/bar/checkout4_3.png) top right;
background-repeat: no-repeat;"

class="yagendoo_vm_checkoutbar_table"
align="center">
<tr>
<td
valign="bottom">
<a
href="/index.php?page=checkout.index&option=com_virtuemart&ship_to_info_id=4aed46ddefc367384 1ad3852e513f777&shipping_rate_id=russianpost%7C%D0%9F%D0%BE%D1%87%D1%82%D0%B0+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D0%B8%7C%EF%BB%BF%D0%97%D0%B0%D0%BA%D0%B0%D0%B7%D0%BD%D0%B0%D1%8F+%D0%B1%D0%B0%D0%BD%D0%B4%D0%B5%D1%80%D0%BE%D0%BB%D1%8C+%5C%22%D0%9E%D1%82%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D1%8F+1+%D0%BA%D0%BB%D0%B0%D1%81%D1%81%D0%B0%5C%22+-+%3Cb%3E%D0%9F%D1%80%D0%B5%D0%B4%D0%BE%D0%BF%D0%BB%D0%B0%D1%82%D0%B0%3C%2Fb%3E+-+%D1%81%D1%80%D0%BE%D0%BA+%D0%B4%D0%BE%D1%81%D1%82%D0%B0%D0%B2%D0%BA%D0%B8+%D0%BE%D1%82+4+%D0%B4%D0%BE+8+%D0%B4%D0%BD%D0%B5%D0%B9%7C114.12&checkout_stage=1&Itemid=2">
Адрес доставки </a>
</td>
<td
valign="bottom">
<a
href="/index.php?page=checkout.index&option=com_virtuemart&ship_to_info_id=4aed46ddefc367384 1ad3852e513f777&shipping_rate_id=russianpost%7C%D0%9F%D0%BE%D1%87%D1%82%D0%B0+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D0%B8%7C%EF%BB%BF%D0%97%D0%B0%D0%BA%D0%B0%D0%B7%D0%BD%D0%B0%D1%8F+%D0%B1%D0%B0%D0%BD%D0%B4%D0%B5%D1%80%D0%BE%D0%BB%D1%8C+%5C%22%D0%9E%D1%82%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D1%8F+1+%D0%BA%D0%BB%D0%B0%D1%81%D1%81%D0%B0%5C%22+-+%3Cb%3E%D0%9F%D1%80%D0%B5%D0%B4%D0%BE%D0%BF%D0%BB%D0%B0%D1%82%D0%B0%3C%2Fb%3E+-+%D1%81%D1%80%D0%BE%D0%BA+%D0%B4%D0%BE%D1%81%D1%82%D0%B0%D0%B2%D0%BA%D0%B8+%D0%BE%D1%82+4+%D0%B4%D0%BE+8+%D0%B4%D0%BD%D0%B5%D0%B9%7C114.12&checkout_stage=2&Itemid=2">
Варианты доставки </a>
</td>
<td
style="font-weight: bold;" valign="bottom">
<div
class="yagendoo_checkoutbar_active_step">
Способ оплаты </div>
</td>
<td
valign="bottom">
<div
class="yagendoo_checkoutbar_active_step">
Завершить заказ </div>
</td>
</tr>
</table> </div>
<div
class="yagendoo_vm_cart_basket yagendoo_vm_basket_all">

<table
class="yagendoo_vm_tables">
<tr
align="left" class="sectiontableheader">
<th>
Изображения</th>
<th>
Название</th>
<th>
Цена</th>
<th>
Количество / Обновить</th>
<th>
Промежуточный итог</th>
</tr>
<tr
valign="middle" class="yagendoo_ste_0">
<td
class="yagendoo_basket_image">
<img
src="http://zbm-group.com/components/com_virtuemart/shop_image/product/Beautiful_Life_4e6 f2a292cb51.jpg"/>
</td>
<td><p
class="yagendoo_basket_name"><a href="/kitayskie-tampony/tampony-beautiful-life.html"><strong>Тампоны Beautiful Life</strong></a><br /></p></td>
<td><p
class="yagendoo_basket_itemprice">145,00 руб.</p></td>
<td
class="yagendoo_vm_cart_icons">
<form
action="" method="post">
<input
type="hidden" name="option" value="com_virtuemart" />
<input
type="text" title="Обновить количество в корзине" id="yagendoo_vm_refreshbox" class="yagendoo_vm_input_box" size="4" maxlength="4" name="quantity" value="1" />
<input
type="hidden" name="page" value="checkout.index" />
<input
type="hidden" name="func" value="cartUpdate" />
<input
type="hidden" name="product_id" value="18" />
<input
type="hidden" name="prod_id" value="18" />
<input
type="hidden" name="Itemid" value="2" />
<input
type="hidden" name="description" value="" />
<input
class="yagendoo_refresh" type="image" name="update" title="Обновить количество в корзине" src="http://zbm-group.com/components/com_virtuemart/themes/yagendoo_VaMazing/yagendoo_ima ges/checkout/refresh.png" alt="Обновить"/>
</form>
<form
action="" method="post" name="delete">
<input
type="hidden" name="option" value="com_virtuemart" />
<input
type="hidden" name="page" value="checkout.index" />
<input
type="hidden" name="Itemid" value="2" />
<input
type="hidden" name="func" value="cartDelete" />
<input
type="hidden" name="product_id" value="18" />
<input
type="hidden" name="description" value="" />
<input
class="yagendoo_delete" type="image" name="delete" title="Удалить товар из корзины" src="http://zbm-group.com/components/com_virtuemart/themes/yagendoo_VaMazing/yagendoo_ima ges/checkout/delete.png" alt="Удалить товар из корзины"/>
</form>
</td>
<td><p
class="yagendoo_basket_itemprice">145,00 руб.</p></td>
</tr>
<tr
class="yagendoo_ste_3">
<td
colspan="5" align="right"><p class="yagendoo_basket_subtotal_l">Промежуточный итог:</p></td>
<td
colspan="1" align="right"><p class="yagendoo_basket_subtotal">145,00 руб.</p></td>
</tr>
<tr
class="yagendoo_ste_3">
<td
colspan="5" align="right"><p class="yagendoo_basket_shipping_l">Стоимость доставки и плата за отгрузку:</p></td>
<td
colspan="1" align="right"><p class="yagendoo_basket_shipping">114,12 руб.</p></td>
</tr>
<tr
class="yagendoo_ste_3">
<td
colspan="5" align="right"><p class="yagendoo_basket_order_total_l">Итого:</p></td>
<td
colspan="1" align="right"><p class="yagendoo_basket_order_total">259,12 руб.</p></td>
</tr>

<!--<tr class="yagendoo_ste_3">
<td colspan="5" align="right"><p class="yagendoo_basket_tax_l">Налог на стоимость заказа:</p></td>
<td colspan="1" align="right"><p class="yagendoo_basket_tax">0,00 руб.</p></td>
</tr>-->

</table><form action="/Go-through-checkout-process.html?checkout_last_step=3" method="post" name="adminForm">
<input
type="hidden" name="option" value="com_virtuemart" />
<input
type="hidden" name="Itemid" value="2" />
<input
type="hidden" name="user_id" value="77" />
<input
type="hidden" name="page" value="checkout.index" />
<input
type="hidden" name="func" value="checkoutProcess" />
<input
type="hidden" name="zone_qty" value="1" />
<input
type="hidden" name="ship_to_info_id" value="4aed46ddefc3673841ad3852e513f777" />
<input
type="hidden" name="shipping_rate_id" value="russianpost%7C%D0%9F%D0%BE%D1%87%D1%82%D0%B0+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D0%B8%7C%EF%BB%BF%D0%97%D0%B0%D0%BA%D0%B0%D0%B7%D0%BD%D0%B0%D1%8F+%D0%B1%D0%B0%D0%BD%D0%B4%D0%B5%D1%80%D0%BE%D0%BB%D1%8C+%22%D0%9E%D1%82%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D1%8F+1+%D0%BA%D0%BB%D0%B0%D1%81%D1%81%D0%B0%22+-+%3Cb%3E%D0%9F%D1%80%D0%B5%D0%B4%D0%BE%D0%BF%D0%BB%D0%B0%D1%82%D0%B0%3C%2Fb%3E+-+%D1%81%D1%80%D0%BE%D0%BA+%D0%B4%D0%BE%D1%81%D1%82%D0%B0%D0%B2%D0%BA%D0%B8+%D0%BE%D1%82+4+%D0%B4%D0%BE+8+%D0%B4%D0%BD%D0%B5%D0%B9%7C114.12" />
<input
type="hidden" name="payment_method_id" value="0" />
<input
type="hidden" name="checkout_last_step" value="3" /> </div>
<div
class="yagendoo_vm_checkout_message">
Пожалуйста, выберите способ оплаты! </div>
<div
class="yagendoo_vm_checkout_pay_meths">
 <fieldset><legend><strong>Способ оплаты</strong></legend>
<table
border="0" cellspacing="0" cellpadding="2" width="100%">
<tr>

<!--<td colspan="2"><input type="radio" name="payment_method_id" id="Наличными при получении" value="20" checked="checked" />
<label for="Наличными при получении">Наличными при получении</label><br /><input type="radio" name="payment_method_id" id="PayPal" value="18" />
<label for="PayPal">PayPal (- 4,35 руб.)
</label><br /> <br> <img src="/"="" align="absmiddle"> <input type="radio" name="payment_method_id" id="Единый кошелек" value="21" />
<label for="Единый кошелек">Единый кошелек (+ 4,35 руб.)
</label><br /><input type="radio" name="payment_method_id" id="ROBOKASSA" value="29" />
<label for="ROBOKASSA">ROBOKASSA</label><br /><input type="radio" name="payment_method_id" id="Салоны связи" value="32" />
<label for="Салоны связи">Салоны связи</label><br /><input type="radio" name="payment_method_id" id="WebMoney" value="33" />
<label for="WebMoney">WebMoney</label><br /><input type="radio" name="payment_method_id" id="QIWI Кошелек" value="31" />
<label for="QIWI Кошелек">QIWI Кошелек</label><br /> </td>-->

<td colspan="2">
<script>
function
look(type){
param=document.getElementById(type);
if(param.style.display == "none") {
if(show) show.style.display = "none";
param.style.display = "block";
document.getElementById('radio'+ type.substring(3)).checked = true;
show = param;
}else param.style.display = "none"
}
</script>

<body
onload="show = document.getElementById('div1')">
<!--Первый способ оплаты-->
<table onclick="look('div1')">
<tr><td
style="padding-top: 5px;" valign="top">
<input
type="radio" value="31" id="radio1" checked="checked" name="payment_method_id" />
</td>
<td
valign="middle">
<label
for="radio1" style="cursor:hand" onclick="return false;">
<table><tr><td>
<img
src="/../images/foto/oplata/qiwi.jpg" />
</td><td
valign="middle">
<span
style="font-family: Arial; color: #008000; font-size: 12pt;"><strong>QIWI Кошелек</strong></span> - <span style="color: #ff0000; font-size: 10pt;">БЕЗ КОМИССИИ </span>
</td></tr></table>
</label>
<div
style="margin-right: 30px; text-align: justify;" style=&{head}; id="div1">
<br/><span
style="font-family: Arial; color: #000; font-size: 10pt;"><strong>Cамый простой и удобный способ оплаты товаров в нашем магазине.</strong> Совершать платежи Вы можете со счета QIWI Кошелька, банковской картой VISA, MasterCard и наличными через терминалы, которые расположены в каждом населенном пункте России - в торгово-развлекательных центрах, магазинах, кинотеатрах и других общедоступных местах. Инструкция по оплате <a style="text-decoration: underline;" href="/"><span style="color: #008000; font-size: 10pt;"><strong>здесь</strong></span></a>.
</div>
</td></tr></table><br/>

<!--Конец первого способа оплаты-->

<!--Второй способ оплаты-->

<table onclick="look('div2')">
<tr><td
style="padding-top: 5px;" valign="top">
<input
type="radio" value="31" id="radio2" name="payment_method_id" />
</td>
<td
valign="middle">
<label
for="radio2" style="cursor:hand" onclick="return false;">
<table><tr><td>
<img
src="/../images/foto/oplata/evros.jpg" />
</td><td
valign="middle">
<span
style="font-family: Arial; color: #008000; font-size: 12pt;"><strong>Салоны связи "Евросеть" и "Связной</strong></span> - <span style="color: #ff0000; font-size: 10pt;">БЕЗ КОМИССИИ </span>
</td></tr></table>
</label>
<div
style="margin-right: 30px; text-align: justify; display: none;" style=&{head}; id="div2">
<br/><span
style="font-family: Arial; color: #008000; font-size: 10pt;">Если у вас нет QIWI Кошелька или возникли трудности при его регистрации,</span><span style="font-family: Arial; color: #000000; font-size: 10pt;"> вы можете оплатить заказ в салонах связи "Евросеть" и "Связной".</span><br/>
<div
style="margin-top: 5px; "><table><tr><td width="10px"></td><td><span style="font-family: Arial; color: #008000; font-size: 10pt;">Номер QIWI Кошелька</span><span style="font-family: Arial; color: #000000; font-size: 10pt;"> - </span><span style="font-family: Arial; color: #ff0000; font-size: 10pt;">12345678</span><span style="font-family: Arial; color: #000000; font-size: 10pt;">, на него необходимо произвести оплату, запишите его.</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">На странице подтверждения заказа указана <span style="font-family: Arial; color: #008000; font-size: 10pt;">итоговая сумма</span>, вместе с доставкой, запишите её.</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">После подтверждения заказа. На ваш электронный адрес поступит письмо с <span style="font-family: Arial; color: #008000; font-size: 10pt;">номером заказа</span>.</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">В ближайшем салоне связи скажите кассиру, что вы хотите пополнить QIWI Кошелек, назовите номер кошелька и сумму.</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">После оплаты напишите нам на email, skype или icq следующее: <span style="font-family: Arial; color: #ff0000; font-size: 10pt;">"Заказ №_ оплачен"</span>. <a style="text-decoration: underline;" href="http://zbm-group.com/index.php?option=com_content&view=article&id=1&Item id=3"><span style="font-family: Arial; color: #008000; font-size: 10pt;">Наши контакты</span></a>.</span></td>
</tr></table></div></div>
</td></tr></table><br/>

<!--Конец второго способа оплаты-->

<!--Третий способ оплаты-->

<table onclick="look('div3')">
<tr><td
style="padding-top: 5px;" valign="top">
<input
type="radio" value="31" id="radio3" name="payment_method_id" />
</td>
<td
valign="middle">
<label
for="radio3" style="cursor:hand" onclick="return false;">
<table><tr><td>
<img
src="/../images/foto/oplata/robo.jpg" />
</td><td
valign="middle">
<span
style="font-family: Arial; color: #000000; font-size: 10pt;">- комиссия от 2%</span>
</td></tr></table>
</label>
<div
style="margin-right: 30px; text-align: justify; display: none;" style=&{head}; id="div3">
<br/><span
style="font-family: Arial; color: #000000; font-size: 10pt;">Это сервис, позволяющий интернет-магазинам принимать платежи от клиентов с помощью:</span></span><br/>
<div
style="margin-top: 5px;"><table><tr><td width="10px"></td><td><span style="font-family: Arial; color: #008000; font-size: 10pt;">Банковские карты VISA, MasterCard, Maestro</span> <span style="font-family: Arial; color: #000000; font-size: 10pt;">(Россия, Украина, Беларусь, Казахстан, Азербайджан, Армения, Киргизия, Молдова, Таджикистан, Туркменистан, Узбекистан, Латвия, Литва, Эстония, Австрия, Бельгия, Болгария, Венгрия, Греция, Дания, Израиль, Испания, Люксембург, Нидерланды, Норвегия, Португалия, Румыния, Турция, Финляндия, Франция, Чехия, Швейцария, Швеция)</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #008000; font-size: 10pt;">Электронная валюта</span> <span style="font-family: Arial; color: #000000; font-size: 10pt;">- MoneyMail, LiqPay, RBK Money, Единый кошелек, EasyPay, WebCreds, Деньги@Mail.ru, Z-Payment, TeleMoney. </span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #008000; font-size: 10pt;">Интернет-банк </span><span style="font-family: Arial; color: #000000; font-size: 10pt;">- Альфа-Клик, HandyBank. </span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #008000; font-size: 10pt;">Перевод по системе Контакт.</span></td>
</tr></table></div></div>
</td></tr></table><br/>

<!--Конец третьего способа оплаты-->

<!--Четвертый способ оплаты-->

<table onclick="look('div4')">
<tr><td
style="padding-top: 5px;" valign="top">
<input
type="radio" value="31" id="radio4" name="payment_method_id" />
</td>
<td
valign="middle">
<label
for="radio4" style="cursor:hand" onclick="return false;">
<table><tr><td>
<img
src="/../images/foto/oplata/wm.jpg" />
</td><td
valign="middle">
<span
style="font-family: Arial; color: #008000; font-size: 12pt;"><strong>WebMoney</strong></span> <span style="color: #000000; font-size: 10pt;">- комиссия 0,8%</span>
</td></tr></table>
</label>
<div
style="margin-right: 30px; text-align: justify; display: none;" style=&{head}; id="div4">
<br/><span
style="font-family: Arial; color: #000000; font-size: 10pt;">Международная система расчетов и среда для ведения бизнеса в сети. Основана в 1998 г.</span><br/>
<div
style="margin-top: 5px;"><table><tr><td width="10px"></td><td><span style="font-family: Arial; color: #008000; font-size: 10pt;">Номера Кошельков </span> - <span style="font-family: Arial; color: #ff0000; font-size: 10pt;"> R12345678</span> <span style="font-family: Arial; color: #000000; font-size: 10pt;">или</span> <span style="font-family: Arial; color: #ff0000; font-size: 10pt;">Z12345678</span><span style="font-family: Arial; color: #000000; font-size: 10pt;">, на один из них необходимо произвести оплату, запишите их.</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">На странице подтверждения заказа указана <span style="font-family: Arial; color: #008000; font-size: 10pt;">итоговая сумма</span>, вместе с доставкой, запишите её.</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">После подтверждения заказа, произведите оплату на один из указанных выше кошельков.</span></td>
</tr></table></div></div>
</td></tr></table><br/>

<!--Конец четвертого способа оплаты-->

<!--Пятый способ оплаты-->

<table onclick="look('div5')">
<tr><td
style="padding-top: 5px;" valign="top">
<input
type="radio" value="31" id="radio5" name="payment_method_id" />
</td>
<td
valign="middle">
<label
for="radio5" style="cursor:hand" onclick="return false;">
<table><tr><td>
<img
src="/../images/foto/oplata/w1.jpg" />
</td><td
valign="middle">
<span
style="font-family: Arial; color: #008000; font-size: 12pt;"><strong>Единый кошелек</strong></span> <span style="color: #000000; font-size: 10pt;">- комиссия от 3%</span>
</td></tr></table>
</label>
<div
style="margin-right: 30px; text-align: justify; display: none;" style=&{head}; id="div5">
<br/><span
style="font-family: Arial; color: #000000; font-size: 10pt;">Это сервис, позволяющий интернет-магазинам принимать платежи от клиентов с помощью:</span><br/>
<div
style="margin-top: 5px;"><table><tr><td width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Ukash</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Платежные терминалы (Россия) - <span style="font-family: Arial; color: #1C70D1; font-size: 10pt;">E-port, X-Plat, PinPay Express, MasterPort, Мобил Элемент, Electropay, Comepay, Молния, ЛИДЕР, Свободная касса, Связной, Элекснет по системе HandyBank, Уникасса, АбсолютПлат.</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Платежные терминалы (Украина) - <span style="font-family: Arial; color: #1C70D1; font-size: 10pt;">City-Pay, ПриватБанк.</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">В отделениях Сбербанка России</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Банки Украины: Приватбанк, Правэкс Банк, УкрСибБанк</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">В любом отделении Почты России</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Денежные переводы «Anelik»</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Денежные переводы «Юнистрим»</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">Банковский перевод в рублях, долларах, гривнах.</span></td></tr>
</tr></table></div></div>
</td></tr></table><br/>

<!--Конец пятого способа оплаты-->

<!--Шестой способ оплаты-->

<table onclick="look('div6')">
<tr><td
style="padding-top: 5px;" valign="top">
<input
type="radio" value="31" id="radio6" name="payment_method_id" />
</td>
<td
valign="middle">
<label
for="radio6" style="cursor:hand" onclick="return false;">
<table><tr><td>
<img
src="/../images/foto/oplata/pp.jpg" />
</td><td
valign="middle">
<span
style="font-family: Arial; color: #000000; font-size: 12pt;"> <span style="color: #000000; font-size: 10pt;">- комиссия 3%</span>
</td></tr></table>
</label>
<div
style="margin-right: 30px; text-align: justify; display: none;" style=&{head}; id="div6">
<br/><span
style="font-family: Arial; color: #000; font-size: 10pt;">Международная платежная система, которой пользуются более 100 миллионов людей по всему миру.</span></div>
</td></tr></table><br/>

<!--Конец шестого способа оплаты-->

<!--Седьмой способ оплаты-->

<table onclick="look('div7')">
<tr><td
style="padding-top: 5px;" valign="top">
<input
type="radio" value="31" id="radio7" name="payment_method_id" />
</td>
<td
valign="middle">
<label
for="radio7" style="cursor:hand" onclick="return false;">
<table><tr><td>
<img
src="/../images/foto/oplata/nal.jpg" />
</td><td
valign="middle">
<span
style="font-family: Arial; color: #008000; font-size: 12pt;"><strong>Наличными при получении</strong></span>
</td></tr></table>
</label>
<div
style="margin-right: 30px; text-align: justify; display: none;" style=&{head}; id="div7">
<br/><span
style="font-family: Arial; color: #000; font-size: 10pt;">Если способ доставки выбрали «Наложенным платежом» или «Самовывоз», тогда выбирайте этот пункт.</span></div>
</td></tr></table><br/>

<!--Конец седьмого способа оплаты-->
</body>
</td> </tr>
</table>
</fieldset>


</div>
</div> <br /><input
type="hidden" name="checkout_this_step[]" value="CHECK_OUT_GET_PAYMENT_METHOD" /> <div align="center">
<input
type="submit" class="button" name="formSubmit" value=" >>" />
</div>
</form><script
type="text/javascript"><!--
function submit_order( form ) { return true; }
--></script>
<div
id="statusBox" style="text-align:center;display:none;visibility:hidden;"></div></div>


</div>


</div>











<div
id="ja-botsl2"><div id="ja-botsl-bot2">
</div>
</div></div>
<div
style=" margin-top: -10px;" id="ja-botsl2"><div id="ja-botsl-bot2"><div id="ja-botsl-top2" class="clearfix">
<div
class="moduletable">
<table
border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td
align="center">
<h4
class="yagendoo_vm_prodsnap_name">
<a
title="Урологический пластырь" href="/kitayskie-plastyri/urologicheskiy-plastyr.html">Урологический пластырь</a>
</h4>

<div
class="yagendoo_vm_prodsnap_image">
<a
title="Урологический пластырь" href="/kitayskie-plastyri/urologicheskiy-plastyr.html">
<img
src="http://zbm-group.com/components/com_virtuemart/shop_image/product/_________________4 e6f2df7c885e.jpg" height="160" width="230" alt="Урологический пластырь" border="0" /> </a>
</div>

<div
class="yagendoo_vm_prodsnap_atc">
<form
class="yagendoo_vm_form" action="http://zbm-group.com/index.php" method="post" name="addtocart" id="addtocart22">
<input
type="hidden" name="option" value="com_virtuemart" />
<input
type="hidden" name="page" value="shop.cart" />
<input
type="hidden" name="Itemid" value="2" />
<input
type="hidden" name="func" value="cartAdd" />
<input
type="hidden" name="prod_id" value="22" />
<input
type="hidden" name="product_id" value="22" />
<input
type="hidden" name="quantity" value="1" />
<input
type="hidden" name="set_price[]" value="" />
<input
type="hidden" name="adjust_price[]" value="" />
<input
type="hidden" name="master_product[]" value="" />
<input
type="submit" class="yagendoo_addtocart_button" value="В корзину" title="В корзину" />
</form>
</div>

<div
class="yagendoo_vm_prodsnap_price"><div class="yagendoo_productPrice">
<span
style="color: #028D01; font-size: 16px; text-align: center;" class="yagendoo_vm_fly_prod_title">


<div>

<!--<div class="yagendoo_productPrice">
<span style="color: #028D01; font-size: 16px; text-align: center;" class="yagendoo_vm_fly_prod_title">-->

100,00 руб. <!--</div>-->
</div>
<div
class="yagendoo_productTax">
<span
class="yagendoo_productTax">
</span>
</div>


</span></div>
</div>
<div
class="yagendoo_clear"></div></td>
<td
align="center">
<h4
class="yagendoo_vm_prodsnap_name">
<a
title="Тампоны Beautiful Life" href="/kitayskie-tampony/tampony-beautiful-life.html">Тампоны Beautiful Life</a>
</h4>

<div
class="yagendoo_vm_prodsnap_image">
<a
title="Тампоны Beautiful Life" href="/kitayskie-tampony/tampony-beautiful-life.html">
<img
src="http://zbm-group.com/components/com_virtuemart/shop_image/product/Beautiful_Life_4e6 f2a292cb51.jpg" height="160" width="230" alt="Тампоны Beautiful Life" border="0" /> </a>
</div>

<div
class="yagendoo_vm_prodsnap_atc">
<form
class="yagendoo_vm_form" action="http://zbm-group.com/index.php" method="post" name="addtocart" id="addtocart18">
<input
type="hidden" name="option" value="com_virtuemart" />
<input
type="hidden" name="page" value="shop.cart" />
<input
type="hidden" name="Itemid" value="2" />
<input
type="hidden" name="func" value="cartAdd" />
<input
type="hidden" name="prod_id" value="18" />
<input
type="hidden" name="product_id" value="18" />
<input
type="hidden" name="quantity" value="1" />
<input
type="hidden" name="set_price[]" value="" />
<input
type="hidden" name="adjust_price[]" value="" />
<input
type="hidden" name="master_product[]" value="" />
<input
type="submit" class="yagendoo_addtocart_button" value="В корзину" title="В корзину" />
</form>
</div>

<div
class="yagendoo_vm_prodsnap_price"><div class="yagendoo_productPrice">
<span
style="color: #028D01; font-size: 16px; text-align: center;" class="yagendoo_vm_fly_prod_title">


<div>

<!--<div class="yagendoo_productPrice">
<span style="color: #028D01; font-size: 16px; text-align: center;" class="yagendoo_vm_fly_prod_title">-->

145,00 руб. <!--</div>-->
</div>
<div
class="yagendoo_productTax">
<span
class="yagendoo_productTax">
</span>
</div>


</span></div>
</div>
<div
class="yagendoo_clear"></div></td>
<td
align="center">
<h4
class="yagendoo_vm_prodsnap_name">
<a
title="Пластырь от мастопатии" href="/kitayskie-plastyri/plastyr-ot-mastopatii.html">Пластырь от мастопатии</a>
</h4>

<div
class="yagendoo_vm_prodsnap_image">
<a
title="Пластырь от мастопатии" href="/kitayskie-plastyri/plastyr-ot-mastopatii.html">
<img
src="http://zbm-group.com/components/com_virtuemart/shop_image/product/_________________4 e6f2db01f3cd.jpg" height="160" width="230" alt="Пластырь от мастопатии" border="0" /> </a>
</div>

<div
class="yagendoo_vm_prodsnap_atc">
<form
class="yagendoo_vm_form" action="http://zbm-group.com/index.php" method="post" name="addtocart" id="addtocart19">
<input
type="hidden" name="option" value="com_virtuemart" />
<input
type="hidden" name="page" value="shop.cart" />
<input
type="hidden" name="Itemid" value="2" />
<input
type="hidden" name="func" value="cartAdd" />
<input
type="hidden" name="prod_id" value="19" />
<input
type="hidden" name="product_id" value="19" />
<input
type="hidden" name="quantity" value="1" />
<input
type="hidden" name="set_price[]" value="" />
<input
type="hidden" name="adjust_price[]" value="" />
<input
type="hidden" name="master_product[]" value="" />
<input
type="submit" class="yagendoo_addtocart_button" value="В корзину" title="В корзину" />
</form>
</div>

<div
class="yagendoo_vm_prodsnap_price"><div class="yagendoo_productPrice">
<span
style="color: #028D01; font-size: 16px; text-align: center;" class="yagendoo_vm_fly_prod_title">


<div>

<!--<div class="yagendoo_productPrice">
<span style="color: #028D01; font-size: 16px; text-align: center;" class="yagendoo_vm_fly_prod_title">-->

100,00 руб. <!--</div>-->
</div>
<div
class="yagendoo_productTax">
<span
class="yagendoo_productTax">
</span>
</div>


</span></div>
</div>
<div
class="yagendoo_clear"></div></td>
</tr>
</table> </div>

</div></div></div>

<!-- END: CONTENT -->

</div>


<!-- BEGIN: LEFT COLUMN -->
<div id="ja-col1">
<div
class="ja-innerpad">

<div
class="module_menu">
<div>
<div>
<div>
<div
class="vmCartModule"><div class="yagendoo_vm_minicart">
<div
class="yagendoo_vm_minicart_content">
<div
class="yagendoo_vm_minicart_item">
<div
class="yagendoo_vm_minicart_image">
<img
style="max-width:99%;" src="http://zbm-group.com/components/com_virtuemart/shop_image/product/Beautiful_Life_4e6 f2a292cb51.jpg" />
</div>
<div
class="yagendoo_vm_minicart_quantity">
<span
class="yagendoo_vm_minicart_prod_count">
1 x 
</span>
<span
class="yagendoo_vm_minicart_pro_name">
<a
href="/kitayskie-tampony/tampony-beautiful-life.html">
Тампоны Beautiful Life </a>
</span>
</div>
<div
class="yagendoo_vm_minicart_price">
145,00 руб. </div>
<div
class="yagendoo_vm_minicart_attribs">
</div>
</div>
</div>
<div
class="yagendoo_vm_minicart_result">
<div
class="yagendoo_vm_minicart_total_prod">
1 Товар </div>
<div
class="yagendoo_vm_minicart_total_price">
145,00 руб. </div>
<div
class="yagendoo_vm_minicart_cartlink">
<a
href="/View-your-cart-content.html" title="Оформить заказ">Оформить заказ</a>
</div>
<div
class="yagendoo_vm_minicart_save">
</div>
</div>

</div></div> </div>
</div>
</div>
</div>

<div
class="module_menu">
<div>
<div>
<div>
<h3>
Авторизация</h3>
<div>
<form
action="http://zbm-group.com/index.php?option=com_user&task=logout" method="post" name="login" id="login">
<div>
Добро пожаловать test</div>
<ul>
<li><a
href="http://zbm-group.com/index.php?page=account.index&option=com_virtuemart&Item id=2">Управление учетной записью</a></li>
</ul>
<input
type="submit" name="Submit" class="button2" style="color: transparent; width: 100%; background-image: url('http://zbm-group.com/components/com_virtuemart/themes/yagendoo_VaMazing/yagendoo_image s/vixod.png') no-repeat;" value="" />
<br /><br />
<input
type="hidden" name="op2" value="logout" />
<input
type="hidden" name="return" value="L0dvLXRocm91Z2gtY2hlY2tvdXQtcHJvY2Vzcy5odG1sP2NoZWNrb3V0X2xhc3Rfc3RlcD0y" />
<input
type="hidden" name="lang" value="english" />
<input
type="hidden" name="message" value="0" />
</form>
</div>
</div>
</div>
</div>
</div>
<div
class="module_menu">
<div>
<div>
<div>
<h3>
Продукция</h3>

<a
title="Китайские тамоны" style="display:block;" class="mainlevel" href="/kitayskie-tampony.html" >Китайские тамоны</a>
<a
title="Лечебные пластыри" style="display:block;" class="mainlevel" href="/kitayskie-plastyri.html" >Лечебные пластыри</a>
<a
title="Капсулы для здоровья" style="display:block;" class="mainlevel" href="/kapsuly-dlya-zdorovya.html" >Капсулы для здоровья</a> </div>
</div>
</div>
</div>
<div
class="module_menu">
<div>
<div>
<div>
<h3>
Выбор валюты</h3>
<p style="text-align: center; margin-top: -15px; padding-bottom: 0px; "><img src="/templates/ja_zeolite/images/curmod.png" border="0" /></p>
<form
action="/index.php" method="post">

<input
type="hidden" name="option" value="com_virtuemart" />
<input
type="hidden" name="Itemid" value="2" />
<input
type="hidden" name="user_id" value="77" />
<input
type="hidden" name="page" value="checkout.index" />
<input
type="hidden" name="func" value="checkoutProcess" />
<input
type="hidden" name="zone_qty" value="1" />
<input
type="hidden" name="ship_to_info_id" value="4aed46ddefc3673841ad3852e513f777" />
<input
type="hidden" name="shipping_rate_id" value="russianpost%7C%D0%9F%D0%BE%D1%87%D1%82%D0%B0+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D0%B8%7C%EF%BB%BF%D0%97%D0%B0%D0%BA%D0%B0%D0%B7%D0%BD%D0%B0%D1%8F+%D0%B1%D0%B0%D0%BD%D0%B4%D0%B5%D1%80%D0%BE%D0%BB%D1%8C+%22%D0%9E%D1%82%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D1%8F+1+%D0%BA%D0%BB%D0%B0%D1%81%D1%81%D0%B0%22+-+%3Cb%3E%D0%9F%D1%80%D0%B5%D0%B4%D0%BE%D0%BF%D0%BB%D0%B0%D1%82%D0%B0%3C%2Fb%3E+-+%D1%81%D1%80%D0%BE%D0%BA+%D0%B4%D0%BE%D1%81%D1%82%D0%B0%D0%B2%D0%BA%D0%B8+%D0%BE%D1%82+4+%D0%B4%D0%BE+8+%D0%B4%D0%BD%D0%B5%D0%B9%7C114.12" />
<input
type="hidden" name="payment_method_id" value="0" />
<input
type="hidden" name="checkout_last_step" value="2" />
<input
type="hidden" name="checkout_this_step[]" value="CHECK_OUT_GET_SHIPPING_METHOD" />
<input
type="hidden" name="formSubmit" value=" >>" />
<select
class="inputbox" name="product_currency" size="1" style="width:130px;">
<option
value="EUR" >Euro</option>
<option
value="RUB" selected="selected">Russian Ruble</option>
<option
value="USD" >US Dollar</option>
</select>
<br/>
<input
type="hidden" name="do_coupon" value="yes" />
<input
style="width: 100%;" " class="button3" type="submit" name="submit" value="" />
</form>
</div>
</div>
</div>
</div>
<div class="
module_menu">
<div>
<div>
<div>
<style type="
text/css">

.comHead {
background: center no-repeat #dae2e8;
border-bottom: 1px solid #ccd3da;
height: 20px;
color: #45688e;
font-weight: bold;
text-align: center
vertical-align: middle;
line-height: 20px;
border-left: 1px solid #ccd3da;
border-right: 1px solid #ccd3da;
}
</style>
<!--<script type="
text/javascript" src="http://userapi.com/js/api/openapi.js?20"></script>-->
<div class="
vkontakte" style="text-align: center; margin-top: -20px; margin-bottom: 10px;">
<img align="
center" src="http://zbm-group.com/components/com_virtuemart/themes/yagendoo_VaMazing/yagendoo_images/vkontakte.png" />
</div>
<table width="
100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td>
<div class="
vkontakte2" style="margin-left: -15px;" id="vk_groups">

<script type="
text/javascript">VK.Widgets.Group("vk_groups", {mode: 0, width: "220px", height: "300"}, 28871242);
</script></div>
</td>
</tr>
</table> </div>
</div>
</div>
</div>


</div>
</div>
<!-- END: LEFT COLUMN -->

</div></div>
<!-- END: CONTENT -->




</div></div>
</div>







<div style="
color: #CCCCCC;margin-bottom: -10px;"><p style="text-align: center;">Copyright © 2011 ZBM Group. All Rights Reserved.</p></div>
<script type="
text/javascript">
addSpanToTitle();
//jaAddFirstItemToTopmenu();
//jaRemoveLastContentSeparator();
//jaRemoveLastTrBg();
//moveReadmore();
//addIEHover();
//slideshowOnWalk ();
jaMenuIcon();
fixMenuWidth();
</script>
<center>
<!-- Yandex.Metrika informer -->
<a href="
http://metrika.yandex.ru/stat/?id=9928333&from=informer"
target="
_blank" rel="nofollow"><img src="//bs.yandex.ru/informer/9928333/3_0_EBFCD2FF_CBDCB2FF_0_pageviews"
style="
width:88px; height:31px; border:0;" alt="Яндекс.Метрика" title="Яндекс.Метрика: данные за сегодня (просмотры, визиты и уникальные посетители)" onclick="try{Ya.Metrika.informer({i:this,id:9928333,type:0,lang:'ru'});return false}catch(e){}"/></a>
<!-- /Yandex.Metrika informer -->

<!-- Yandex.Metrika counter -->
<div style="
display:none;"><script type="text/javascript">
(function(w, c) {
(w[c] = w[c] || []).push(function() {
try {
w.yaCounter9928333 = new Ya.Metrika({id:9928333, enableAll: true});
}
catch(e) { }
});
})(window, "
yandex_metrika_callbacks");
</script></div>
<div style="
margin-bottom: 10px;"><script src="//mc.yandex.ru/metrika/watch.js" type="text/javascript" defer="defer"></script>
<noscript><div><img src="
//mc.yandex.ru/watch/9928333" style="position:absolute; left:-9999px;" alt="" /></div></noscript></div>
<!-- /Yandex.Metrika counter --></center>
</div>

</body>

</html>

Спустя 16 минут, 9 секунд (17.10.2011 - 12:28) redreem написал(а):
style=&{head}; id="div1"

- это что такое? у вас просто айдишники изза этого не цепляются к дивам.

Спустя 13 минут (17.10.2011 - 12:41) YVSIK написал(а):
redreem гы)) ну не знаю, если есть время подобное читать то самое-то что надо а так мысли в слух )) может сделать ТС и все что он хочет))
а читать целый сайт и ответить почему он не работает ВЕРХ мастерства!!
smile.gif

Спустя 1 минута, 9 секунд (17.10.2011 - 12:42) redreem написал(а):
да это очевидно. я потратил от силы минуту на это

Спустя 2 минуты, 50 секунд (17.10.2011 - 12:45) YVSIK написал(а):
Medvedoc надобно разделить его на части и потом тестить по частям а так все свалено в одну кучу )) счаз одно поправишь другое загнется в этой неразберихе

redreem класс!! smile.gif

Спустя 1 час, 21 минута, 12 секунд (17.10.2011 - 14:06) Medvedoc написал(а):
так я же в самом первом коде привел код одной только страницы. Во свех браузерах работает отлично, а вот в ie не хочет.
Главным здесь является скрипт раскрывающего текста

<script>
function look(type){
param=document.getElementById(type);
if(param.style.display == "none") {
if(show) show.style.display = "none";
param.style.display = "block";
document.getElementById('radio'+ type.substring(3)).checked = true;
show = param;
}else param.style.display = "none"
}
</script>

а после него тянется html-код:

<body onload="show = document.getElementById('div1')">
<!--Первый способ оплаты-->
<table onclick="look('div1')">
<tr><td
style="padding-top: 5px;" valign="top">
<input
type="radio" value="31" id="radio1" checked="checked" name="payment_method_id" />
</td>
<td
valign="middle">
<label
for="radio1" style="cursor:hand" onclick="return false;">
<table><tr><td>
<img
src="../images/foto/oplata/qiwi.jpg" />
</td><td
valign="middle">
<span
style="font-family: Arial; color: #008000; font-size: 12pt;"><strong>QIWI Кошелек</strong></span> - <span style="color: #ff0000; font-size: 10pt;">БЕЗ КОМИССИИ </span>
</td></tr></table>
</label>
<div
style="margin-right: 30px; text-align: justify;" style=&{head}; id="div1">
<br/><span
style="font-family: Arial; color: #000; font-size: 10pt;"><strong>Cамый простой и удобный способ оплаты товаров в нашем магазине.</strong> Совершать платежи Вы можете со счета QIWI Кошелька, банковской картой VISA, MasterCard и наличными через терминалы, которые расположены в каждом населенном пункте России - в торгово-развлекательных центрах, магазинах, кинотеатрах и других общедоступных местах. Инструкция по оплате <a style="text-decoration: underline;" href=""><span style="color: #008000; font-size: 10pt;"><strong>здесь</strong></span></a>.
</div>
</td></tr></table><br/>

<!--Конец первого способа оплаты-->

<!--Второй способ оплаты-->

<table onclick="look('div2')">
<tr><td
style="padding-top: 5px;" valign="top">
<input
type="radio" value="31" id="radio2" name="payment_method_id" />
</td>
<td
valign="middle">
<label
for="radio2" style="cursor:hand" onclick="return false;">
<table><tr><td>
<img
src="../images/foto/oplata/evros.jpg" />
</td><td
valign="middle">
<span
style="font-family: Arial; color: #008000; font-size: 12pt;"><strong>Салоны связи "Евросеть" и "Связной</strong></span> - <span style="color: #ff0000; font-size: 10pt;">БЕЗ КОМИССИИ </span>
</td></tr></table>
</label>
<div
style="margin-right: 30px; text-align: justify; display: none;" style=&{head}; id="div2">
<br/><span
style="font-family: Arial; color: #008000; font-size: 10pt;">Если у вас нет QIWI Кошелька или возникли трудности при его регистрации,</span><span style="font-family: Arial; color: #000000; font-size: 10pt;"> вы можете оплатить заказ в салонах связи "Евросеть" и "Связной".</span><br/>
<div
style="margin-top: 5px; "><table><tr><td width="10px"></td><td><span style="font-family: Arial; color: #008000; font-size: 10pt;">Номер QIWI Кошелька</span><span style="font-family: Arial; color: #000000; font-size: 10pt;"> - </span><span style="font-family: Arial; color: #ff0000; font-size: 10pt;">12345678</span><span style="font-family: Arial; color: #000000; font-size: 10pt;">, на него необходимо произвести оплату, запишите его.</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">На странице подтверждения заказа указана <span style="font-family: Arial; color: #008000; font-size: 10pt;">итоговая сумма</span>, вместе с доставкой, запишите её.</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">После подтверждения заказа. На ваш электронный адрес поступит письмо с <span style="font-family: Arial; color: #008000; font-size: 10pt;">номером заказа</span>.</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">В ближайшем салоне связи скажите кассиру, что вы хотите пополнить QIWI Кошелек, назовите номер кошелька и сумму.</span></td></tr>
<tr><td
width="10px"></td><td><span style="font-family: Arial; color: #000000; font-size: 10pt;">После оплаты напишите нам на email, skype или icq следующее: <span style="font-family: Arial; color: #ff0000; font-size: 10pt;">"Заказ №_ оплачен"</span>. <a style="text-decoration: underline;" href="http://zbm-group.com/index.php?option=com_content&view=article&id=1&Item id=3"><span style="font-family: Arial; color: #008000; font-size: 10pt;">Наши контакты</span></a>.</span></td>
</tr></table></div></div>
</td></tr></table><br/>

<!--Конец второго способа оплаты-->
</body>


Данный скрипт позволяет сделать выпадающий текст при выборе способа оплаты.

Спустя 1 час, 41 минута, 42 секунды (17.10.2011 - 15:48) SlavaFr написал(а):
а ты пробовал скрипт в <head> написать, а все другие таги в body?

Спустя 1 час, 50 минут, 40 секунд (17.10.2011 - 17:39) Medvedoc написал(а):
у меня страница, где вставлен сам скрипт написан на php, потому там нет тегов head

Спустя 34 минуты, 12 секунд (17.10.2011 - 18:13) redreem написал(а):
в первом разе ты привел код php. вот я и попросил тебя код из браузера, чтобы увидет как компилируется страница, потому что сразу пали подозрения на ту кнструкцию. в итоге как и ожидал - {} - недокомпилируется. убери вообще style из той коснтрукции и посмотри что будет.
Быстрый ответ:

 Графические смайлики |  Показывать подпись
Здесь расположена полная версия этой страницы.
Invision Power Board © 2001-2024 Invision Power Services, Inc.