function mhShowInfoPanel(width, content) {
	var mhInfoPanelDlg;
	mhInfoPanelDlg = new YAHOO.widget.Dialog('InfoPanelDlg', {
		width: width + 'px',
		draggable: true,
		visible: false,
		close:true,
		modal:true,
		fixedcenter:true,
		buttons: []
	});
	mhInfoPanelDlg.setBody('<div class="popup_dlg_text">' + content + '</div>');
	var klEsc = new YAHOO.util.KeyListener(document, { keys:27 },
		{ fn:mhInfoPanelDlg.hide, scope:mhInfoPanelDlg, correctScope:true }, "keyup" );
	mhInfoPanelDlg.cfg.queueProperty("keylisteners", klEsc);
	mhInfoPanelDlg.render(document.body);
	mhInfoPanelDlg.show();
	return false;
}

function mhChoosePaymentTypeForRussia(ppgId, softkeyId, quantity, price, login, tariffNameOrNodeId) {
	var sum = quantity * price;

	var skLink = "http://www.softkey.ru/catalog/basket.php?prodid=" + softkeyId + "&quantity=" + quantity + "&from=1661286&clear=Y&site=17069&referer1="+login;
	var ppgLink = "https://secure.payproglobal.com/orderpage.aspx?products=" + ppgId + "&quantity=" + quantity + "&paymenttype=12&lang=ru&country=russian+federation&currency=71&customfield1="+login;
	if(sum < 200) {
		ppgLink = skLink;
	}
	var qiwiLink = "/ru/pay_qiwi?sum=" + sum;
	var bankLink = '/ru/pay/bank?amount=' + sum + '&currency=RUB';
	var wmLink = '/ru/pay/webmoney?amount=' + sum + '&currency=RUB';
	if (tariffNameOrNodeId) {
		wmLink += '&tariff=' + tariffNameOrNodeId;  // TODO чем её escape-ить?
	}

	mhShowInfoPanel(400, '<table width="99%">'
		+'<tr><td width="130">'
		+ (ppgId
		 	? '<a href="'+ppgLink+'"><img src="/locimg/ru/pay_ppg2.png" width="121" height="60"></a>' +
			  '</td><td><a href="'+ppgLink+'" class="ptChoosePanel">' +
			  '<font size="+1">Кредитная карта или PayPal</font></a>' +
			  '</td></tr>'
			: ''
		) +
		'<tr><td><a href="'+bankLink+'"><img src="/locimg/ru/pay_bank.png" width="121" height="56"></a>' +
			'</td><td><a href="'+bankLink+'" class="ptChoosePanel">' +
			'<font size="+1">Счёт для юрлиц или квитанция для физлиц</font></a>' +
			'</td></tr>' +
		'<tr><td><a href="'+wmLink+'"><img src="/locimg/ru/pay_wm.png" width="121" height="35"></a>' +
			'</td><td><a href="'+wmLink + '" class="ptChoosePanel">' +
			'<font size="+1">WebMoney</font></a>' +
			'</td></tr>' +
		'<tr><td><a href="'+skLink+'"><img src="/locimg/ru/pay_sk2.png" width="121" height="56"></a>' +
			'</td><td><a href="'+skLink+'" class="ptChoosePanel">' +
			'<font size="+1">Яндекс.Деньги, прочие типы платежей</font></a>' +
			'</td></tr>' +
		'<tr><td>' +
			'<a href="'+qiwiLink+'"><img src="/locimg/ru/pay_qiwi.png" width="121" height="107"></a>' +
			'</td><td><a href="'+qiwiLink+'" class="ptChoosePanel">' +
			'<font size="+1">Терминалы QIWI или сайт QIWI.Кошелёк</font></a>' +
			'</td></tr>' +
		'</table>');
	return false;
}

