function noBot(n)
{
	var n1 = timeBot()
	var n2 = timeBotMin()
	var string = window.prompt('Сколько будет '+n1+' + '+n2);
	if(string == n1+n2)
		//alert('Ваш голос засчитан!');
		location.href = '?id=vote&n='+n+'&act=up';
	else if (string != null)
		alert('Ты бот чтоль ?!');
}

function noBotMin(n)
{
	var n1 = timeBot()
	var n2 = timeBotMin()
	var string = window.prompt('Сколько будет '+n1+' + '+n2);
	if(string == n1+n2)
		//alert('Ваш голос засчитан!');
		location.href = '?id=vote&n='+n+'&act=down';
	else if (string != null)
		alert('Ты бот чтоль ?!');
}

function timeBot()
{
     var now=new Date()
     var num=(now.getSeconds()+now.getMinutes()+now.getHours())%13
     return num;
}

function timeBotMin()
{
     var now=new Date()
     var num=(now.getSeconds()+now.getMinutes()+now.getHours())%9
     return num;
}
