
function countBnnr(bnnr_id,url,target) {

var query = ''+bnnr_id;

$('div#result').load('/bnnr_count.php?bnnr_id='+bnnr_id);

if (target==1) {
var popupWin = window.open(url, "", "location=1,toolbar=1,directories=1,menubar=1,status=1,scrollbars=1,resizable=1,fullscreen=1");
popupWin.focus(); // передаём фокус новому окну
}
if (target==0) {
	document.location=url;
}

}



function subScribe()
{
var email = prompt ("Введите Ваш email", "");

		var req = new Subsys_JsHttpRequest_Js();
		req.onreadystatechange = function()
		{if (req.readyState == 4)
//		alert(req.readyState);
		{if (req.responseJS)
			{
				alert(req.responseJS.result);
			}
		}
		}
		req.caching = true;
		req.open('POST', '/subscribe.php?email='+email, true);
//	alert('/updatetypeorder.php?id='+id+'&type='+type);
		req.send({ q: "", test:303 });


}
